:root {
    --dark-green: #216869;
    --medium-green: #49a078;
    --light-green: #9cc5a1;
    --white: #FAFAFA;
    --almost-black: #1F2421
}

body, html {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
}


#page-grid {
    display: grid;
    grid-template-columns: 270px 1fr;
    align-items: start;
    width: auto;
    max-width: 100vw;
    background-color: var(--light-green);
}

/* ##################### */
/* # Navigation column # */
/* ##################### */
#nav {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    position: sticky;
    top: 0;
    height: 94.5vh;
    background-color: var(--dark-green);
    border-radius: 0 50px 50px 0;
}
#logo-btn {
    display: flex;
    justify-content: center;
}
#nav-logo {
    display: block;
    width: auto;
    max-width: 65%;
}
#nav > a {
    /* font-family: "Montserrat Alternates", sans-serif; */
    font-size: 30px;
    text-decoration: none;
    color: var(--white);
}
#nav > a.active {
    font-weight: bold;
}



/* ####################### */
/* # Main content column # */
/* ####################### */
#content-container {
    padding: 50px;
    background-color: var(--light-green);
}
.content-box {
    padding: 30px;
    background-color: var(--white);
    border-radius: 30px;
    font-size: 20px;
}
.italic {
    font-style: italic;
}
.section-header h1 {
    font-family: "Montserrat Alternates", sans-serif;
    font-size: 40px;
}
.connector-line {
    margin: -12px;
    display: flex;
    justify-content: center;
}

#hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    height: 80vh;
}
#hero-content > img {
    margin: 0 0 0 10%;
    display: block;
    width: auto;
    max-width: 65%;
}
#hero-content > span {
    font-style: italic;
    font-size: 20px;
    color: var(--almost-black);
}

iframe {
    width: 100%;
    height: 70vh;
}
.content-box img {
    display: block;
    margin: 0 auto 0 auto;
    max-height: 70vh;
    max-width: 100%;
}

#data-container iframe {
    height: 85vh;
}

#team-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    grid-template-rows: repeat(4, 1fr);
    gap: 25px;
    font-size: 25px;
}
#team-grid h2 {
    font-family: "Montserrat Alternates", sans-serif;
    font-weight: 300;
    font-size: 40px;
}
#team-grid img {
    width: 100%;
}

/* Hide nav on small screens */
@media (max-width: 1000px) {
    #page-grid {
        grid-template-columns: 1fr;
    }

    #nav {
        display: none;
    }

    #content-container {
        padding: 15px;
    }

    #team-grid {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    #team-grid img {
        margin: 0 auto 0 auto;
        width: 70%;
    }
}