@font-face {
    font-family: 'kugile';
    src: url('../fonts/Kugile_Demo.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'kugile';
    background-color: #FAEBD7;
    color: #000;
    font-size: 62.5%;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

p {
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: justify;
    font-size: 15px;
}

nav {
    padding: 3.2rem;
    display: none;
    position: fixed;
    background-color: #FAEBD7;
    top: 0;
    left: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    width: 100vw;
    z-index: 10;
}

nav ul {
    flex-direction: column;
    gap: 2rem;
    list-style: none;
}

nav li {
    padding: 1rem 0;
    font-size: 2.4rem;
}

nav.open {
    display: flex;
}

#hamburger {
    display: block;
}

.divider {
    display: none;
}

main {
    flex: 1;
    display:flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3.2rem;
    flex-direction: column;

    max-width: 800px;
    margin: 0 auto;
    
    /* padding-top: 80px; */
}

footer {
    /* background-color: #FAEBD7; */
    padding: 1rem;
    text-align: center;
    font-size: 1.8rem;
}

#splash-img {
    text-align: center;
    margin: 0 0 10px 0;
    max-width: 40%;
    height: auto;
}

#splash {
    text-align: center;
    font-size: 3.2rem;
    line-height: 4.8rem;
    margin-bottom: 3.2rem;
}

#profile {
    max-width: 40%;
    height: auto;
    clip-path: circle();
}

#countdown-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    font-size: 1.7rem;
}

#countdown-identifier {
    font-size: 1rem;
}

.countdown-number {
    width: 10%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0;
}

#hamburger {
    width: 40px;
    height: 40px;
    text-align: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 2.7rem;
    cursor: pointer;
    z-index: 11;
    display: block;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

#b-20 {
    font-size: 15px;
}

@media (min-width: 600px) {
    a {
        color: black;
        /* text-shadow: 1px 1px 8px #000, 1px 1px 8px #000; */
    }

    .background-beige {
        background-color: #FAEBD7;
    }

    .container {
        background-color: unset;
    }

    .dark-transparent {
        background-color: rgba(0, 0, 0, 0.1);
    }

    #body-hero {
        background-image: url('images\\EPhoto_01.JPG');
        background-size:cover;
        background-position: center bottom;
        background-color: unset;
    }

    .divider {
        display: block;
    }

    main {
        margin-top: 80px;
    }

    nav {
        display: flex; 
        /* background-color: #FAEBD7; */
        background-color: unset;
        background-color: rgba(255, 255, 255, 0.3);
        width: 100%;
        height: auto;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    }

    nav ul {
        display: flex;
        flex-direction: row;
        gap: 1.6em;
        justify-content: center;
        text-align: center;
        align-items: center;
    }
    
    nav li {
        cursor: pointer;
        padding: 0 10px;
        padding: unset;
        font-size: 1.9rem;
    }

    #hamburger {
        display: none;
    }

    #splash-img {
        max-width: 60%;
        color: red;
        /* box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3); */
        display: none;
    }

    #profile {
        max-width: 15%;
        height: auto;
        clip-path: circle();
        display: none;
    }

    #splash {
        color: #fff;
        text-shadow: 1px 1px 8px #000, 1px 1px 8px #000;
    }

    footer {
        color: white;
        text-shadow: 1px 1px 8px #000, 1px 1px 8px #000;
        font-size: 2.2rem;
    }

    #countdown-identifier {
        font-size: 1.9rem;
    }
}