:root {
    --main-bg-color: #f5f5f5;
    --main-text-color: rgb(45, 37, 50);
    --main-font: 'Fredoka One', cursive;
    --secondary-font: 'ABeeZee', sans-serif;
}

[data-theme="dark"] {
    --main-bg-color: rgb(45, 37, 50);
    --main-text-color: #f5f5f5;
}

body {
    background-color: var(--main-bg-color);
}

h1 {
    color: var(--main-text-color);
}


/* OTHER STYLING */

body {
    margin: 0;
    min-height: 100vh;
    flex-direction: column;
    font-family: var(--main-font);
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color .3s ease;
}

button {
    cursor: pointer;
    font-family: var(--secondary-font);
    padding: 1em 2em;
    background: none;
    border: 1px solid var(--main-text-color);
    color: var(--main-text-color);
    border-radius: 15px;
    font-size: 1.2rem;
    transition: transform .3s ease;
}

button:hover {
    transform: scale(1.05);
    transition: transform .3s ease;
}

button:active {
    transform: scale(0.85);
    transition: transform .3s ease;
}

h1 {
    transition: color .3s ease;
}

[data-theme="dark"] {
    transition: color, background-color .3s ease;
}