body{
    background-color: #161616;
    color: rgb(255, 255, 255);
    font-family: 'IBM Plex Sans';
}

h1,h2,h3,h4, li, ul, p{
    margin: 0;
    padding: 0;
    font-size: 1em;
    font-weight: 300;
}
p{
    margin: 0;
    font-size: 1em;
}

.section-header{
    font-size: 2em;
    margin: 0 0 1em 0;
}


.nav{
    padding: 2.5em 20vw 0 20vw;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.nav-list{
    display: flex;
    justify-content: right;
    list-style-type: none;
}

.nav-link{
    color: white;
    text-decoration: none;
}

.nav-list-element{
    margin: 0 0.5em;
}

.nav-name{
    font-size: 1.2em;
    font-weight: 900;

    border-bottom: 3px solid #161616;
}

.nav-name:hover,.nav-list-element:hover{
    border-bottom: inset 3px;
    cursor:pointer;
    transition: 0.1s;
}

.content{
    margin: 4em 20vw 10vh 20vw;
}


@media(max-width: 1000px){
    
    .content{
        margin: 10vh 1em;
    }

    .nav{
        display:flex;
        flex-direction: column;
    }
    .place-time-container{
        flex-direction: column;
    }

    .degree-name{
        color: #FFFFFF;
    }

    .nav-list{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .nav-list-element{
        margin: 0.2em 0;
    }
}
