*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
body{

    background: #080808;
    color: #fff;
}
#header{
    width: 100%;
    height: 135vh;
    background-image: url(images/background.png);
    background-size: cover;
    background-position: center;
}
.container{
    padding: 10px 10%;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.logo{
    width: 200px;
}
nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}
nav ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}
nav ul li a::after{
    content: '';
    width: 0;
    height: 3px;
    background: #1bd4bb;
    position: absolute;
    left: 0;
    bottom: -1px;
    transition: 0.5s;
}
nav ul li a:hover::after{
    width: 100%;
}
.header-text{
    margin-top: 10%;
    margin-left: -100px;
    left: 225px; 
    top: -20px;
	position: absolute; 
    font-size: 50px;
}
.header-text h1{
    font-size: 50px;
    margin-top: 20px;
    margin-left: -250px;
    left: 560px; 
    top: -20px;
	position: absolute; 
}
.header-text h2{
    font-size: 50px;
    margin-top: 20px;
    margin-left: -250px;
    left: 825px; 
    top: -20px;
	position: absolute; 
}
.btn.btn2{
    font-size: 18px; 
    position: absolute;
    bottom: -150px;
    background-color: #ff6cbd;
    padding-left: -100px;
    padding-top: -10px;
    border-radius: 20px;
    left: 415px; 
    cursor: pointer;  
    width: 163px;
    height: 34px; 
    color: #fff;
    background-color: #ff008c;
    transform: scale(1.1);
}
.contact form{

width: 100%;
}
form input, form textarea{
    width: 80%;
    border: 0;
    outline: none;
    background-color: #e9960c;
    padding: 10px;
    margin: 10px 0;
    color: #fff;
    font-size: 18px;
    border-radius: 6px;
    position: relative;
    left: 200px;
    top: 100px;
}
