*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}

body{
    background-image: url("denys-nevozhai-guNIjIuUcgY-unsplash.jpg"); 
    background-size: cover;      
    background-position: center; 
    background-repeat: no-repeat; 
    height: 100vh;
    margin: 0;   
}

a{
    text-decoration: none;
    color: black;
}

.navbar{
    top: 0;
    left: 0%;

    padding: 25px 9%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color:aquamarine;
     z-index: 100;
}

.navbar .logo{
    font-size: 35px;
    font-weight: 700;
}

.navbar ul{
    display: flex;
}

.navbar ul li{
    margin-left: 35px;
    list-style: none;
}

.navbar ul li a{
    font-size: 20px;
    font-weight: 300;
    transition:all .5s ease-out;
}

.navbar ul li a:hover,
.navbar ul li.active a {
    color: blue;
    transform: scale(1.1);
}

.login-btn{
    background-color: aquamarine;
    color: black;
    padding: 10px;
    border: none;
    border-radius: 10px;
    transition: all 1s ease-out;
    color: white;
    margin-right: 50px;
}

.login-btn a{
    text-decoration: none;
    color:black;
}





.container-btn{
    display: flex;
    justify-content: flex-end;
}
.login-btn:hover{
    transform: scale(1.1);
    background-color: rgb(13, 84, 60);
}

.content{
    width: 50%;
    margin: 20px;
    color: white;
    
}

.content h1{
    font-weight: 450px;
}


