*{
    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 h1{
    margin-top: 10%;
    margin-left: -100px;
    left: 850px; 
    top: -10px;
	position: absolute; 
    font-size: 50px;
}
.header-text p{
    font-size: 20px;
    margin-top: 150px;
    margin-left: 500px;
}
#female
{ 
	 left: -5px; 
	 top: 80px; 
	 position: absolute; 
	 width: 584px;
	 height: 670px;
} 
.Download_CV{
    margin-top: -350px;
    background-color: #ff6cbd;
    margin-left: 850px;
    width: 226px;
    height: 34px;
    padding-left: 50px;
    padding-top: 5px;
    border-radius: 20px;
    position: absolute;
    left: -80px; 
    cursor: pointer;   
}
.Download_CV:hover {
    background-color: #ff008c;
    transform: scale(1.1);
}
.Download_CV a{
    text-decoration: none;
    color: #fff;
}