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

a{
    text-decoration: none;
    color: white;
}

.hero{
    height: 100vh;
    width: 100%;
    background-color: black;

}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 45px 8% 0 8%;
}

.hero h1{
    font-size: 35px;
    letter-spacing: 1px;
    cursor: pointer;
}

.hero h1 span{
    color: lightseagreen;
}

nav ul li{
    display: inline-block;
    padding: 10px 25px;
    transition: all .4s;
}

nav ul li a{
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover{
    color: lightseagreen;
}

.newslatter input{
    color: black;
}

.btn{
    background-color: lightseagreen;
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all .3s;
}

.btn:hover{
    transform: scale(1.2);
    border-radius: 20px;
}

.content{
    padding-top: 230px;
}

.content-body{
    display: flex;
    justify-content: space-around;
    padding-left: 100px;
    padding-right: 50px;
    margin-top: -100px;
}

.content-body img{
    height: 420px;
    width: 580px;
    margin-top: -100px;
}

.content-body h1{
    margin: 20px 0 20px;
    font-size: 75px;
}

h3{
    font-size: 25px;
    margin-bottom: 50px;
}


.newslatter form{
    width: 380px;
    position: relative;
}

.newslatter form input:first-child{
    width: 100%;
    padding: 15px 130px 15px 15px;
    outline: none;
    border: 2px solid lightseagreen;
    border-radius: 30px;
}

.newslatter form input:last-child{
    position: absolute;
    border: none;
    top: 5px;
    right: 6px;
    padding: 10px 30px;
    background-color: lightseagreen;
    border-radius: 30px;
    color: white;
    cursor: pointer;
}

.about{
    width: 100%;
    padding: 100px 0;
    background-color: #191919;
}

.about img{
    width: 430px;
}

.about-text{
    width: 550px;
}

.main{
    width: 1130px;
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: space-around;
}

.about-text h2{
    font-size: 55px;
    margin-bottom: 20px;
}

.about-text h5{
    letter-spacing: 1px;
    font-size: 22px;
    margin-bottom: 25px;
}

.about-text p{
    letter-spacing: 1px;
    line-height: 28px;
    margin-bottom: 45px;
    font-size: 15px;
}

.button{
    background-color: lightseagreen;
    padding: 13px 30px;
    font-weight: bold;
    border-radius: 30px;
    border: 2px solid green;
    transition: all .3s;
    cursor: pointer;
}

.button:hover{
    background-color: transparent ;
}

.portfolio{
    background-color: #101010;
    width: 100%;
    padding: 100px 0;
}

.title h2{
    font-size: 65px;
    margin: 30px auto;
    text-align: center;
}

.box{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.card{
    height: 390px;
    width: 365px;
    background-color: #191919;
    padding: 20px 35px;
    margin: 20px;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
}

.card i{
    color: lightseagreen;
    font-size: 50px;
    margin: 25px 0;
}

h5{
    font-size: 23px;
    margin-bottom: 30px;
}

.pragraph p{
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 30px;
}

.contact{
    width: 100%;
    height: 290px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #191919;
}

.contact p{
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 25px;
}

footer{
    width: 100%;
    height: 400px;
    background-color: #101010;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer p:nth-child(1){
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: bold;
}

footer p:nth-child(2){
    margin-bottom: 17px;
    width: 500px;
    text-align: center;
}
.social{
    display: flex;
}

.social a{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    background-color: lightseagreen;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 22px 10px;
    transition: all .3s;
    
}

.social a:hover{
    transform: scale(1.3);
}

.end{
    margin-top: 100px;
    font-size: 12px;
}