*{
    margin: 0;
    padding: 0;
    font-family: 'popins', sans-serif;
    box-sizing:border-box;
}
body{
    background:#000;
    color: #fff;
}
#header{
    width:100;
    height:100vh;
    background-image: url(user.jpg);
    background-size:cover ;
    background-position: center;

}
.container{
    padding: 10px,10px;
}
nav{
    display:flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 45px;
    padding-left: 8%;
    padding-right:8%;

}
.logo{
    color: white;
    font-size: 35px;
    letter-spacing: 1px;
    cursor: pointer;
}
span{
    color:#f9004d;

}
nav ul li{
    list-style-type: none;
    display: inline-block;
    padding: 10px  20px;
}
nav ul li a{
    color:white;
    text-decoration:none;
    font-weight: bold;
    text-transform: capitalize;
}
nav ul li a:hover{
    color:#f9004d;
    transition: .4s;
}
.btn{
    background-color:#f9004d ;
    color:white;
    text-decoration: none;
    border: 2px solid transparent;
    font-weight: bold;
    padding:10px 25px;
    border-radius:30px;
    transition: transform.4s;
}
.btn:hover{
    transform: scale(1.2);

}
.header-text{
    margin-top: 20%;
    font-size: 30px;
    

}
.header-text h1{
    font-size: 60px;
    margin-top: 20px;
}

.content{
    position: absolute;
    top:60%;
    left:23%;
    transform:translate(-50%);
}
h1{
    color:white;
    margin: 20px 0 40px;
    font-size:75px;

}
h3{
    color:white;
    font-size: 25px;
    margin-bottom: 40px;
}
h4{
    color:#fcfc;
    letter-spacing: 2px;
    font-size :20px;
}
.newslatter form{
    width: 380px;
    max-width: 100%;
    position: relative;

}
.newslatter form input:first-child{
    display: inline-block;
    width:100%;
    padding:14px 130px 14px 15px;
    border: 2px solid #f9004d;
    outline: none;
    border-radius:30px  ;
}
.newslatter form input:last-child{
    position:absolute;
    display: inline block;
    outline: none;
    border: none;
    padding: 10px 30px;
    background-color: #f9004d;
    color:white;
    border-radius: 30px;
    box-shadow: 0px 0px 5px #000, 0px 0px 15px #858585 ;
    top:6px;
    right:7px;
}

.about{
    width: 100%;
    padding: 100px 0px;
    background-color: black;

}
.about img{
    height: auto;
    width:550px;
}
.about-text{
    width:550px;
}
.main{
    width: 1130px;
    max-width: 95%;
    margin:0 auto;
    display: flex;
    align-items: center;
    justify-content:space-around;
}
.about-text h2{
    color:white;
    font-size: 75px;
    text-transform: capitalize;
    margin-bottom:20px;

}
.about-text h5{
    color: white;
    font-size: 25px;
    text-transform: capitalize;
    margin-bottom:25px;
    letter-spacing: 2px;
}
.about-text p{
    color:#fcfc;
}



