* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

.header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 8vh;
    background-color: black;/*#5D4954;*/
}

.logo{
    color: rgb(226,226,226);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 15px;
}

.logo a{
    text-decoration: none;
    color: rgb(226,226,226);
}

.email a{
    color: black;
}

.nav-links{
    display: flex;
    justify-content: space-around;
    width: 50%;
}

.nav-links li{
    list-style: none;
}

.nav-links a{
    color: rgb(226,226,226);
    text-decoration: none;
    letter-spacing: 3px;
    font-weight: bold;
    font-size: 12px;
}
.burger{
    display: none;
    cursor: pointer;
}

.burger div{
    width: 25px;
    height: 2px;
    background-color: rgb(226,226,226);
    margin: 5px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 1024px){
    .nav-links{
        display: flex;
        justify-content: space-around;
        width: 100%;
    }
}

@media screen and (max-width: 768px){
    body{
        overflow-x: hidden;
    }
    .nav-links{
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: black;/*#5D4954;*/
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 40%;
        transform: translate(100%);
        transition: transform 0.5s ease-in;
    }
    .nav-links li{
        opacity: 0;
    }
    .burger{
        display: block;
    }
}

.nav-active{
    transform: translateX(0%);
}

@keyframes navLinkFade{
    from{
        opacity: 0;
        transform: translateX(50px);
    }
    to{
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1{
    transform: rotate(-45deg) translate(-5px,5px);
}

.toggle .line2{
    opacity: 0;
}

.toggle .line3{
    transform: rotate(+45deg) translate(-5px,-5px);
}

footer{
    display: flex;
    margin: auto;
    height: 20vh;
    align-items: flex-end;
}

.links{
    display: flex;
    flex: 1;
    justify-content: flex-end;
}

.introduction{
    display: flex;
    flex: 2;
    width: 80%;
    margin: auto;
    min-height: 50vh;
    align-items: center;
    justify-content: space-around;
}

.projects,
.publications{
    width: 80%;
    margin: auto;
    min-height: 50vh;
    align-items: center;
    justify-content: space-around;
}

.pubsList h1, a{
   font-size: 20px;
   color: black;
}
.pubsList p{
   font-size: 18px;
   text-decoration: none;
   color: black;
}

.projectsList p img{
    display: flex;
    flex: 2;
    margin: auto;
    height: 25vh;
}

.projectsList p0 img{
    display: flex;
    margin: auto;
    height: 10vh;
}


.projectsList p1 img{
    display: flex;
    margin: auto;
    height: 40vh;
}

.projectsList p2 img{
    display: flex;
    margin: auto;
    height: 25vh;
}

.introduction img{
    height: 50vh;
    /*box-shadow: 0px 5px 20px black;*/
}

.aboutme{
    display: flex;
    flex: 2;
    width: 80%;
    margin: auto;
    min-height: 50vh;
    align-items: center;
    justify-content: space-around;
}

.aboutme img{
   height: 40vh;
   box-shadow: 0px 5px 20px black;
}

.cta-select,
.cta-cv{
    border: 2px solid black;
    background: transparent;
    color: black;
    width: 150px;
    height: 50px;
    cursor: pointer;
    font-size: 16px;
}

.cta-cv{
    border: 2px solid black;
    background: black;
    color: white;
}

