body {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
    text-align: center;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    letter-spacing: -0.25px;
}

header {
    padding: 20px;
    margin-bottom: 30px;
}

header h1 {
    margin: 0 auto;
    font-size: 2.5em;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    max-width: 800px;
    padding-left: 20px;
    text-align: left;
    letter-spacing: -0.5px;
    background-color: #ffffff;
    color: #000000ff;
}

a.header-link {
    text-decoration: none;
    color: inherit;
}

main {
    padding: 0 20px;
    flex-grow: 1;
    margin-top: 100px;
}

.game-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

.button {
    font-family: 'Outfit', sans-serif;
    padding: 20px 20px;
    font-size: 1.5em;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 400;
    width: 340px;
    text-align: center;
    box-sizing: border-box;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.active-button {
    background-color: #60B47DFF; 
    color: #15572BFF;
    font-weight: 400;
}

.active-button:hover {
    background-color: #86CF9FFF;
}

.inactive-button {
    background-color: #e0e0e0;
    color: #000000;
    font-weight: 400;
}

.inactive-button:hover {
    background-color: #EEEEEE;
}

.letters-button {
    background-color: #fff; 
    border: 2px solid #3EB5C5; 
    color: #3EB5C5; 
}

.letters-button:hover {
    background-color: #0D515A; 
    color: #3EB5C5; 
    border-color: #0D515A;
}

.words-button {
    background-color: #fff;
    border: 2px solid #CB75A5; 
    color: #CB75A5;
}

.words-button:hover {
    background-color: #5C0E32; 
    color: #CB75A5; 
    border-color: #5C0E32;
}

.mimes-button {
    background-color: #fff; 
    border: 2px solid #7AA7C5; 
    color: #7AA7C5; 
}

.mimes-button:hover {
    background-color: #303F9F; 
    color: #7AA7C5; 
    border-color: #303F9F;
}

.mixups-button {
    background-color: #fff; 
    border: 2px solid #EDCD37; 
    color: #EDCD37; 
}

.mixups-button:hover {
    background-color: #A67100; 
    color: #EDCD37; 
    border-color: #A67100;
}

.game-buttons h2 {
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 10px;
    color: #000000ff;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
}

.wavy-divider {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    line-height: 0;
    margin-top: 50px;
    margin-bottom: 30px;
}

.wavy-divider svg {
    width: 100%;
    height: auto;
    display: block;
}

.wavy-divider path:first-child {
    fill: #ffffff;
}

.wavy-divider path:last-child {
    stroke: #000000;
    stroke-width: 4;
}

footer {
    padding: 30px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 0.9em;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.social-media {
    display: flex;
    gap: 15px;
    align-items: center;
}

footer a {
    text-decoration: none;
    color: #555;
}

footer a:hover {
    text-decoration: underline;
}

.social-media a {
    font-size: 1.5em;
}

.social-media i {
    color: #333;
}

.contact-email a {
    color: #333;
    font-weight: 600;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
        font-weight: 400; 
        text-align: left;
        padding-left: 20px;
    }

    .button {
        padding: 15px 50px; 
        font-size: 1.1em; 
        width: 310px;
        white-space: nowrap;
        text-align: center; 
        margin-left: auto; 
        margin-right: auto;
    }

    .game-buttons {
        margin-bottom: 25px;
    }

    .wavy-divider {
        margin-bottom: 20px;
    }

    footer {
        text-align: center;
        flex-direction: column; 
        justify-content: center; 
        align-items: center;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .footer-links,
    .social-media,
    .contact-email {
        margin-right: 0;
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (min-width: 769px) {

} 