* {
    margin: 0;
    padding: 0;
    font-family: 'Gentium Plus', serif;
}

#banner {
    background: linear-gradient(rgb(0,0,0,0.0) 10%,#153852) 50%, url(background.png);
    background-size: cover;
    background-position: center;
    height: 100vh;
}
.banner-text{
    color:whitesmoke;
    text-align:center;
    padding: 180px;
}
.banner-text h1{
    font-size: 90px;
    font-family: 'Gentium Plus', serif;
}
.banner-text p{
    font-size: 30px;
    font-style: italic;
}
#sideNav {
    width: 150px;
    height: 100vh;
    position: fixed;
    right: -150px;
    top: 0;
    background: #153852;
    z-index: 2;
    transition: 0.5s;
}
nav ul li{
    list-style:none;
    margin: 50px 20px;
}
nav ul li a{
    text-decoration:none;
    color:whitesmoke;

}
#menuBtn{
    width:50px;
    height: 50px;
    background: none;
    text-align: center;
    position:fixed;
    right: 30px;
    top:20px;
    border-radius: 3px;
    z-index: 9;
    cursor: pointer;
}
#menuBtn img{
    width: 20px;
    margin-top:15px;
}

#project{
    width:100%;
    padding:70px 0;
    background: #efefef;

}
@media screen and (max-width: 770px){
    .banner-text h1{
    font-size: 44px;
    }
}

/* title */

.title-text{
    text-align: center;
    padding-bottom: 70px;
}
.title-text p{
    margin:auto;
    font-size: 30px;
    color:#000000;
    font-weight: bold;
    position:relative;
    z-index:2;
    display:inline-block;
}
.title-text h1{
    font-size:50px;
    color: white;
}
/* Projects */

#project {
    width: 100%;
    padding: 70px 0;
    background: linear-gradient(to top, rgb(0,0,0,0.0) 70%,#153852);
}

a:link {
    color: white;
    background-color: transparent;
    text-decoration: none;
}

.project-box{
    width: 80%;
    display:flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin:auto;
}
.single-project{
    flex-basis:31%;
    text-align: center;
    border-radius: 7px;
    margin-bottom: 20px;
    color: #002530;
    position: relative;
}
.single-project img{
    width:100%;
    border-radius:7px;
}
.overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    border-radius: 7px;
    cursor: pointer;
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5));
    opacity: 0;
    transition: 1s;
}
.single-project:hover .overlay{
    opacity: 1;
} 
.project-desc{
    width: 80%;
    position: absolute;
    bottom: 0;
    left: 50%;
    opacity:0;
    transform: translateX(-50%);
    color:whitesmoke;
    transition: 1s;
}

hr{ 
    background: #fff;
    height:2px;
    border: 0;
    margin: 15px auto;
    width: 60%;
}
.project-desc p{
    font-size: 14px;
}
.single-project:hover .project-desc{
    bottom:40%;
    opacity:1;
}
@media screen and (max-width: 770px){
    .single-project{
        flex-basis: 100%;
        margin-bottom: 30px;
    }
    .project-desc p {
        font-size: 12px;
    }
    hr{
        margin:5px auto;
    }
    .single-project:hover .project-desc {
        bottom: 25% !important;
    }
}
/* Footer */

#footer {
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(rgb(0,0,0,0.0) 15%,#153852);
}

.social-links{
    text-align:center;
}
.modify{
    height: 40px;
    width: 40px;
    font-size: 40px;
    line-height: 40px;
    margin: 40px 5px 0;
    color: #ffffff;
    cursor: pointer;
}