@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');

body {
    margin: 0;
    font-family: 'Roboto', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    background-color: #0f2140;
    /* background-color: linear-gradient(180deg, rgba(2,0,36,1) 0%, rgba(51,47,122,1) 100%); */
}

p {
    line-height: 150%;
}

#site {
    /* margin-top: 12px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;

    text-align: center;
    min-height: 100vh;
    margin: 0 1em;
    row-gap: 2.5em;
}

#logo {
    padding-top: 2em;
}

#simplifiedheader {
    display: flex;
    align-items: center;
}

#simplifiedheader a {
    width: 30%;
} 

#simplifiedheader #title {
    padding-top: 0px;
}

#simplifiedheader .vh-logo {
    width: 60%;
}

/* #logo-row {
    background-color: white;
    border-radius: 14px;
    padding: 8px 16px;

    display: flex;
    justify-content: space-around;
    align-items: center;

    width: fit-content;
    margin: auto;
} */

/* #logo-row img {
    height: 50px;
} */

#title {
    padding-top: 24px;
    /* padding-bottom: calc(8vmin); */
}

h1, h2 {
    font-family: 'Nunito', 'Roboto', sans-serif;
    letter-spacing: 0.5px;
    margin: 0;
}

#tagline {
    margin: 0px;
    font-style: italic;
    font-weight: 400;
}

#div {
    padding-top: 0.8em;
    width: 100%;
}

/* dotted divider */
#div hr {
    border-top: 4px solid #21f5fa;
    border-style: dotted;
}

#content, #footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    row-gap: 2em;
    column-gap: 4em;
}

#desc, #date {
    max-width: 400px;
}

#desc {
    text-align: justify;
    text-justify: inter-word;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 0.5em 0;
    padding: 0;
}

.countdown {
    font-family: 'Nunito';
    max-width: 400px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.countdown-box {
    text-align: center;
    min-width: 80px;
}

.time {
    font-size: 2rem;
    font-weight: 600;
    color: #ff4162;
}

#drop-cap {
    float: left;
    color: #ff4162;
    font-size: 3em;
    font-weight: 600;
    font-family: 'Nunito', 'Roboto', sans-serif;
    line-height: 100%;
    padding-right: 0.2em;
}

#social-media {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 1em;
    justify-content: center;
}

#social-media a {
    text-decoration: none;
    opacity: 0.5;
}

#social-media a:hover {
    opacity: 1;
}

#social-media-icons {
    display: flex;
    gap: 0.7em;
}

#footer p {
    margin: 0;
}

#footer {
    column-gap: 4em;
    row-gap: 1em;
}

#footer a {
    color: #21f5fa;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Nunito', 'Roboto', sans-serif;
}

#copyright {
    opacity: 0.5;
    font-size: 12px;
    padding-bottom: 0.3em;
}

.rc {
    color: #ff4162;
}

.yc {
    color: #21f5fa;
}

/* MOBILE VIEW  */
@media only screen and (max-width: 600px) {
    #logo {
        width: 100%;
    }

    .vh-logo {
        width: 40%;
    }

    #title h1 {
        font-size: 25px;
    }

    #title h3 {
        font-size: 20px;
    }

    #content p {
        font-size: 15px;
        line-height: 1.5rem;
    }

    #date h2 {
        font-size: 20px;
    }
    
    #desc {
        margin-bottom: 30px;
        padding: 20px;
    }

    #footer {
        flex-direction: column;
    }

    #simplifiedheader {
        display: block;
    }

    #simplifiedheader #title {
        padding-top: 24px;
    }
    
    #simplifiedheader .vh-logo {
        width: 30%;
    }
}
