@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300&display=swap');
body {
    font-family: Arial, Helvetica, sans-serif;
    padding:0px;
    margin:0px;
    position:absolute;
    top:13vh;
    width: 100%;
}
#top-nav {
    position:fixed;
    top:0px;
    left:0px;
    right:0px;
    background-color: black;
    color: white;
    box-shadow: 0px 5px 10px 0px rgba(0,0,0,1);
    z-index: 1;
}
#top-nav div {
    display:flex;
    justify-content: space-around;
    flex-basis: auto;
    height:13vh;
    align-items: center;
    flex-wrap: nowrap;
    padding-left: 10px;
    padding-right: 10px;
}
#top-nav a {
    color:wheat;
}
#top-nav span {
    margin-left: 20px;
    margin-right: 20px;
}
#nav-mobile {
    display: none !important;
}
#nav-desktop div {
    font-family: 'Merriweather', serif;
    font-weight: bolder;
}
#top-banner {
    margin:0px;
    padding:0px;
    width:100vw;
    background-color: black;
    background-image: url("../img/noel2.png");
    color:antiquewhite;
    overflow: auto;
    background-size: auto 100%;
    background-repeat: no-repeat;
    padding:auto;
    min-height: 60vh;
    height:fit-content;
}
#top-banner div {
    float: right;
    /*margin: 6%;*/
    padding: 6%;
    border-radius: 5%;
    font-size: 4vw;
    color: white;
    font-family: 'Merriweather', serif;
    animation: normal 0.5s fade-in;
    background-color: rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 900px) {
    #top-banner div {
        float: initial;
        text-align: center;
        color: white;
        font-size: 30px;
        position: absolute;
        bottom:5px;
        left:5vw;
        right:5vw;
        animation: none;
    }
    #top-banner {
        background-position: center center;
        position: relative;
    }
    #nav-desktop {
        display: none !important;
    }
    #nav-mobile {
        display: block !important;
    }
    #nav-mobile div {
        justify-content: flex-start;
    }
}
.abstract {
    padding: 2.5%;;
    font-size:14pt;
}
.abstract:nth-child(odd) {
    background-color: black;
    color:antiquewhite;
}
.abstract img {
    width:100%;
}
.project-holder {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.project {
    background-color: antiquewhite;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    margin:20px;
}
.project img {
    width: 180px;
    padding:10px;
    border:1px solid black;
    border-radius: 10px;
    background-color: white;
}
.project input[type=button] {
    background-color: #fc8744;
    width:100%;
    border-radius: 9px;
    padding:7px;
    color:white;
    border: 3px solid white;
}
.project a {
    color: darkblue;
}
#footer {
    background-color: black;
    padding:50px;
}
#footer * {
    color: whitesmoke;
    text-decoration: none;
}
@keyframes fade-in {
    0% {
        font-size: 1vw;
        color:black;
        transform: skewY(20deg);
    }
}
@keyframes menu-in {
    0% {
        left:-400px;
        opacity: 0;
    }
    99% {
        left:0px;
    }
    100% {
        left:auto;
        opacity: 1;
    }
}
.img-gallery {
    display:flex;
    justify-content: space-evenly;
    margin:50px;
    flex-wrap: wrap;
}
.img-gallery img {
    height:100px;
    margin:20px;
}
.img-gallery div {
    text-align: center;
}
a:hover {
    color: grey !important;
}
p, h2, form, .img-holder {
    margin:20px;
}
h1 {
    padding: 5%;
    font-family: 'Merriweather', serif;
    font-size: 30pt;
    color: wheat;
    background-color: black;
    margin:0px;
}
.img-holder {
    padding:20px;
    background-color: wheat;
}
#navholder-mob {
    display: none;
    background-color: wheat;
    text-align: center;
    padding: 30px;
    height: 85vh;
    animation: menu-in 1s normal;
    z-index: 1;
    position: fixed;
    min-width: 60%;
}
#navholder-mob div {
    padding: 20px;
    margin:auto;
}
#navholder-mob a {
    color: #0a214c;
    font-size: 2vh;
    text-decoration: none;
}