.navigation-bar{
    background-color: #d4a16d;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* z-index: 9999; */
    /* only when using any z-indices */
}

.navigation-bar.scrolled {
    background-color: #8B4513;
}

.nav-link{
    color: #FFFFFF;
    float: left;
    padding: 12px;
    width: 12%;
    text-align: center;
}

.nav-link.active{
    color: #000000;
}

.body{
    overflow: hidden;
    min-height: 100%;
    /* scroll-behavior: smooth; */
}

.person{
    background-color: #8B4513;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    min-height: 100%;
    color: #fff;
    display: flex;
    overflow-y: auto;
    border-bottom:20px solid #8B4513;
}

.person--content{
    width: 800px;
    margin: 30px auto;
    padding: 3em;
    text-align: center;
}

.person--content--intro{ 
    display: flex;
    flex-direction: row;
    color: white;
    align-items: center;
    justify-content: center;
    gap: 1em;
}

.intro--name{
    font-size: 72px;
    letter-spacing: 0.15em;
    font-weight: 200;
}

.person--content--subdescription{
    padding-top: 2em;
    font-weight: 350;
    letter-spacing: 0.08em;
}

.person--content--citation{
    padding-top: 2em;
    padding-bottom: 2em;
    letter-spacing: 0.08em;
    font-size: 30px;
    display: flex;
}


.citation{
    text-align: center;
    font-weight: 400;
}

#profilepic{
    height: 225px;
    object-fit: cover;
    max-width:100%;
    border-radius: 40%;
}

.cvlink{
    color: #FFFFFF;
}

.cvlink:hover{
    color: turquoise;
}

/* #CD853F */
.skills{
    background-color: #d4a16d;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    min-height: 100%;
    color: #000;
    display: flex;
    overflow-y: auto;
    border-bottom: 20px solid #d4a16d;
}

.skills--content{
    width: 800px;
    margin: 20px auto;
    padding: 3em;
}

.research{
    background-color: #8B4513;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    min-height: 100%;
    color: #fff;
    display: flex;
    overflow-y: auto;
    border-bottom:20px solid #8B4513;
}

.research--content{
    width: 800px;
    margin: 20px auto;
    padding: 3em;
}

@media only screen and (max-width: 1080px) {
    .navigation-bar{
        width: 100vw;
    }

    .navigation-bar.scrolled {
        width: 100vw;
    }

    .nav-link{
        width: 25%;
        padding: 8px;
    }
}

/* mal noch eine Abstufung machen muss sich vor 640 noch ändern und bis ganz kleine Handys.
einfach Bild kleiner und wieder links hin... */

@media only screen and (max-width: 640px) {

    .person--content--intro{ 
        display: contents;
        color: white;
        align-items: center;
        justify-content: center;
        gap: 1em;
    }

    .intro--name{
        font-size: 60px;
        letter-spacing: 0.01em;
        font-weight: 175;
        padding-top: 0.3em;
    }

    #profilepic{
        height: 25vh;
        object-fit: cover;
        max-width:100%;
        border-radius: 40%;
    }
}