/* menu bar | page specific */
.menu-div {
    position: absolute;
    height: 75px;
    left: 32px;
    right: 32px;

    display: flex;
    align-items: center;
    justify-content: end;
    background-color: #1B3C53;
}

.menu-link {
    margin-left: 16px;

    font-size: 18px;
    color: #F9F3EF;
    text-decoration: none;
}

/* name section | page-specific */
.separator {
    font-weight: 700;
    color: #1B3C53;
}

.name-box {
    margin-top: 32px;
    margin-left: 64px;
    margin-right: 64px;
    margin-bottom: 32px;
    border-radius: 16px;
    max-width: 1000px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #7a97ae;
}

.name-text {
    margin-top: 0;
    margin-bottom: 32px;

    font-size: 20px;
    color: #F9F3EF;
    text-align: center;
}

/* about section | page-specific */
.about-box {
    margin-left: 64px;
    margin-right: 64px;
    margin-bottom: 32px;
    border-radius: 16px;
    max-width: 1000px;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #7a97ae;
    color: #F9F3EF;
}

.about-div {
    margin-top: 0;
    margin-left: 32px;
    margin-right: 32px;
    margin-bottom: 32px;

    background-color: #7a97ae;
}

.about-div p:first-child {
    margin: 0;
}

/* contact section | page-specific */
.contact-box, .coop-box {
    margin-left: 64px;
    margin-right: 64px;
    margin-bottom: 32px;
    border-radius: 16px;
    max-width: 1000px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #7a97ae;
}

.contact-div, .coop-div{
    background-color: #7a97ae;
    color: #F9F3EF;
}

.contact-p, .coop-p{
    margin-top: 0;
    margin-bottom: 32px;
    text-align: center;
}

.contact-text, .coop-text{
    font-size: 20px;
    color: #F9F3EF;
    text-decoration: none;

}

/* adjust to screen size | page-specific */
@media only screen and (min-width: 500px) {
    .about-div {
        #column-count: 2;
    }
}

@media only screen and (min-width: 700px) {
    .about-div {
        #column-count: 3;
    }
}

section {
    margin-bottom: 2rem;
}

ul {
    list-style-type: disc;
    margin: 0 0 1rem 1.5rem;
    padding: 0;
}

h2 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
}
