body {
    margin: 0;
    font-family: pt sans;
}

#navbar {
    position: fixed;
    width: 100%;
    top: 0;
}
#navbarLinks {
    display: none;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -100px;
    padding-bottom: 100px;
}
#navbarLinks a {
    text-decoration: none;
    font-size: 70px;
    color: black;
    margin: 60px 0px;
}
#navbarLinks a:hover {
    color: grey;
}
.icon {
    display: block;
    position: absolute;
    padding: 14px 16px;
    color: black;
    right: 0;
    top: 0;
    font-size: 25px;
}
.icon:hover {
    color: grey;
}
.projectInfo {
    margin-top: 90px;
    margin-left: auto;
    margin-right: auto;
    width: 90vw;
}
@media only screen and (max-width: 1024px) {
    .projectCover {
        display: block;
    }
    .projectInfoText {
        margin: 0px 0px;
    }
    .projectDescription {
        margin-left: 18%;
    }
}

.gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 120px;
}
.gallery img {
    width: 90vw;
    margin: 100px 0 0 0;
    border-radius: 15px;
}