
a{
    text-decoration: none ;
    font-family: Arial;
    position: relative;

}
.navigation a:hover{
    color: #000
}
.navigation a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #000;
    transition: width 0.5s, background-color 0.5s;
}

.navigation a:hover::after {
    width: 100%;
    background-color: #20B2AA;
}

ul {
    list-style-type: none;
    padding: 0;
    text-transform: uppercase;
}


body{
    margin:0px;
    padding-top: 70px;
    background-color: #e7e8ec;
}   

.page {
    display: flex;
    flex-direction: column;
    font-family: Arial;
}
.navigation {
    align-items: center;
    position: fixed;
    display: flex;
    height: 70px;
    top: 0;
    background: #faf8f8;
    width: 100%;
    z-index: 9999;
    justify-content: flex-end;
}
.nav-wrapper {
    margin-right: 50px;

}
.nav li {
    display: inline;
    margin-right: 20px;
}

.nav a {
    color: black;
}

.header {
    color: #20B2AA;
    padding: 15px;
}
.header-text{
    font-size: 24px;
    margin-left: 50px;
}
.footer{
    border-style: solid;
    border-color: #20B2AA;
    width: 100%;  
    color: #333;
    padding: 1px;
    text-align: center;
    font-family: Arial;
}

.personalia {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.profile {
    background-color: #faf8f8;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.person-logo {
    border: 4px solid #20B2AA;
    border-radius: 50%;
    margin: 15px 0px 15px 0px;
    width: 40%;
    height: 40G;
    animation: glow 3s ease alternate;
}

.profile-content {
    padding: 15px;
    font-size: 20px;
}

.profile-content__category-title {
    color: #20B2AA; 
}

.profile-content__category--hidden-mobile {
    display: none;
}

.profile-content__element {
    display: flex;
    flex-direction: column;
}

.profile-content__element--hidden-mobile {
    display: flex;
    flex-direction: column;
    display: none;
}

.profile-content__title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 2px;
    margin-top: 6px;
}

.profile-content__period {
    display: none;
}

.profile-content__institute {
    color: #20B2AA; 
    margin-top: 0px;
    font-size: 14px;
}
aside a {
    text-decoration: none !important;
}

.aside-right{
    background-color: #e7e8ec;
    min-width: 50px;
}
aside img {
    max-width: 50px;
    height: auto;
}

aside img[src*="discord"] {
    max-width: 36px;
    height: auto;
}

aside ul li img {
    display: inline-block;
    width: 50px;
    height: auto;
}

aside {
    background-color: #faf8f8;
    text-align: center;
    display: flex;
    align-items: center;
}


aside ul li {
    text-align: center;
    margin-bottom: 60px;
}

/*mobile version*/

@media only screen and (min-width: 280px) {

    .page {
        flex-direction: row;
    }
    .header{
        padding: 30px;
    }

    .person-name{
        order: -1;
    }

    .profile-content__category--hidden-mobile{
        display: flex;
        flex-direction: column;
    }

    .profile-content__category--hidden-mobile hr{
        width: 100%;
    }

    .profile-content__element--hidden-mobile {
        display: flex;
    }

    .profile-content__element-header{
        display: flex;
        justify-content: space-between;
    }

    .profile-content__period {
        font-size: 12px;
        color: #5c6166;
        display: flex;
    }    
}

@media only screen and (max-width: 768px) {
    .page {
    flex-wrap: wrap;
    flex-direction: row;
    }
    .page > aside {
    width: 14%;
    }
    .page .personalia {
    width: 86%;
    }
    .page aside {
        justify-content: center;
    }
    .profile {
        background-color: #e7e8ec;
    }
    .profile-content {
        margin: 0 auto;
        width: 300px;
        background: #faf8f8;
    }
    .aside-right {
        min-width: 0;
    }
    .header-text {
        display: none;
    }
}

/*Cookies*/

.gdpr{
    background-color: #e7e8ec;
}
.gdpr-consent {
    display: flex;
    font-family: Arial;
    flex-direction: column;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    margin: 1px;
    border: 3px solid #20B2AA;
    border-radius: 15px 15px 15px 15px;
    background-color: white;
}

.gdpr-consent__description{
    display: flex;
    justify-content: center;

}

.gdpr-consent__choice{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-evenly;
    width: 100%;
}

.gdpr-consent__button--accept {
    background-color: #C8E6C9;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid gray;
}

.gdpr-consent__button--accept:hover {
    background-color: #66BB6A;
}

.gdpr-consent__button--reject {
    background-color: #FFCDD2;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid gray;
}

.gdpr-consent__button--reject:hover {
    background-color: lightcoral;
}

.hide{
    display: none;
}

.show{
    display: block;
}
