*{
    margin: 0;
    padding: 0;
    font-family: 'Archivo', sans-serif;
    font-size: 20px;
}
.header{
    min-height: 100vh;
    width: 100%;
    background-image:linear-gradient(rgba(4,9,30,0.3),rgba(4,9,30,0.8)),url(images/imageback2.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding-bottom: 40px;
    overflow: hidden;
}
.header h1{
    font-style: none;
    color: white;
    font-size: 62px;
}

.secondheader{
    min-height: 100vh;
    width: 100%;
    background-image:linear-gradient(rgba(4,9,30,0.3),rgba(4,9,30,0.8)),url(images/imageback3.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding-bottom: 40px;
    overflow: hidden;
}
.secondheader h1{
    font-style: none;
    color: white;
    font-size: 62px;
}

h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}

a{
    text-decoration: none;
}


nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}
nav img{
    width: 300px;
}
.nav-links{
    flex: 5;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: white;
    text-decoration: none;
    font-size: 20px;
}


.nav-links ul li::after{
    content: "";
    width: 0%;
    height: 2px;
    background: deepskyblue;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
    top: -5px;
}

nav .fa {
    display: none;
}


.current::after{
   content: "";
    height: 2px;
    background: deepskyblue;
    display: block;
    margin: auto;
}





.text-box{
    width: 60%;
    height: 300px;
    color: #fff;
    text-align: center;
    text-shadow: -1px 1px 100px black;
    margin: inherit;
    align-content: center;
    position: relative;
    margin:auto;
    padding-top: 150px;
}


h2{
font-size: 62px;
}

.text-box p{
    margin: 10px 0 15px;
    font-size: 20px;
    color: #fff;
    text-shadow: -1px 1px 10px black;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 32px;
    font-size: 20px;
    background: transparent;
    position: relative;
    cursor: pointer;
    text-shadow: -1px 1px 10px black;
}
.hero-btn:hover{
    border: 1px solid white;
    background:linear-gradient(rgba(4,90,300,0.3),rgba(40,90,300,0.4));
}




.footer {
text-align: center;
    width: 100%;
	color: white;
    position: relative;
    margin-top: 5%;
    float: left;
}
 
.footer p{
    color: white;
    font-size: 20px;
}



.gallery{
    width: 90%;
    margin: auto;
    text-align: center;
    background: white;
    padding: 50px;
    font-size: 20px;
}
.gallery a{
    text-decoration: none;
    color: black;
}
.gallery h1{
color: black;
    margin: 10px;
}
.gallery p{
font-size: 20px;
}

p{
  color: black;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 0px;
}
.footer a{
    color: white;
    
}
.row {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}
.project {
flex-basis: 30%;
    background: #fff1f8;
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 20px 12px;
    transition: 0.5s;
}
.project:hover{
    box-shadow:0 0 10px 0px rgba(0,0,0,0.5);
}



.contact {
list-style: none; 
    font-size: 20px;
    text-shadow: -1px 1px 100px black;
}

.contact a{
    text-decoration: underline;
    color: white;
    font-size: 20px;
}


@media(max-width: 700px){
    
 .text-box h2 {
    font-size: 50px;
    }
    .text-box{
    padding-top: 90px;
}
    .second{
    font-size:32px;
}

    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: absolute;
        background: deepskyblue;
        height: 100%;
        width: 200px;
        top: 0;
        right: -220px;
        text-align: left;
        z-index: 2;
        transition: 0.7s;
    }
    nav {
        overflow: hidden;
    }
    nav .fa {
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
    .row {
        flex-direction: column;
    }
    .gallery {
        padding: 20px;
    }
    .footer {
        margin-top: 10%;
    }
    .hero-btn {
      margin-bottom: 20px;
    }
    .text-box {
        width: 90%;
    }
}