*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
body{

    background: #080808;
    color: #fff;
}
#header{
    width: 100%;
    height: 115vh;
    background-image: url(images/background.png);
    background-size: cover;
    background-position: center;
}
#picture
{ 
	 left: 800px; 
	 top: 70px; 
	 position: absolute; 
	 width: 442px;
	 height: 647px;
} 
.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 h1{
    margin-top: 10%;
    position: absolute;
    bottom: 390px;
    font-size: 45px;
}
.header-text h2{
    margin-top: 10%;
    position: absolute;
    bottom: 340px;
    left: 280px;
    font-size: 45px;
}
.header-text p1{
    font-size: 30px;
    margin-top: 10px;
    position: absolute;
    left: 160px;
    bottom: 290px;
}
.header-text p2{
    font-size: 30px;
    margin-top: 10px;
    position: absolute;
    left: 190px;
    bottom: 250px;
}
.get_in_touch{
    margin-top: -200px;
    background-color: #ff6cbd;
    margin-left: -540px;
    width: 226px;
    height: 34px;
    padding-left: 53px;
    padding-top: 5px;
    border-radius: 20px;
    position: absolute;
    left: 22px; 
    bottom: 250px;
    cursor: pointer;   
}
.get_in_touch a{
    text-decoration: none;
    color: #fff;
}

.get_in_touch:hover {
    background-color: #ff008c;
    transform: scale(1.1);
}

.intas a{
    background-color: #7E5105;
    margin-left: -480px;
    margin-top: -150px;
    padding-left: 6px;
    padding-top: 6px;
    padding-right: 7px;
    height: 37px;
    border-radius: 5px;
    position: absolute;
    left: 5px;
    bottom: 200px;
    transition: 0.5s;
}
.intas a:hover{
    background-color: #ffa407;
    transform: translateY(-5px);
}

.behance a{
    background-color: #7E5105;
    margin-left: -432px;
    margin-top: -150px;
    padding-left: 6px;
    padding-top: 8px;
    padding-right: 7px;
    height: 37px;
    border-radius: 5px;
    position: absolute;
    left: 5px;
    transition: 0.5s;
    bottom: 200px;
}
.behance a:hover{
    background-color: #ffa407;
    transform: translateY(-5px);
}
.twits a{
    background-color: #7E5105;
    margin-left: -380px;
    margin-top: -150px;
    padding-left: 6px;
    padding-top: 8px;
    padding-right: 7px;
    height: 37px;
    border-radius: 5px;
    position: absolute;
    left: 5px;
    transition: 0.5s;
    bottom: 200px;
}
.twits a:hover{
    background-color: #ffa407;
    transform: translateY(-5px);

}