@import 'elements/toggle.css';
@import 'elements/buttons.css';
@import 'themes/notion.css';

:root {
    --bg-color: #fff;
    --txt-color: #000;
}

.dark-mode {
    --bg-color: #090c13;
    --txt-color: #848484;
}

.test {
    width: 32px;
    height: 32px;
    background-color: black;
}

body {
    font-family: 'Quicksand', sans-serif;
    text-align: center;
    height: 100vh;
    margin: 0;
    padding: 0;
    background: var(--bg-color);
    color: var(--txt-color);
    font-weight: 300;
    transition: background .8s, color .8s;
}

h1 {
    font-weight: 500;
    font-size: 50px;
}

p {
    font-size: 20px;
}

.holder-content {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle__holder {
    padding: 20px 20px 0 0;
    position: absolute;
    right: 0;
    top: 0;
}

@media only screen and (max-width: 600px) {
    h1 {
        font-size: 40px;
    }

    p {
        font-size: 16px;
    }
}