*{
    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);
}


.content{
    background-color:transparent;
    width: 60%;
    margin: 220px auto;   
    padding: 40px;
    border: none;
    border-radius: 10px;
    box-shadow: 6px 6px 6px black;
    transition: all .5s ease-out;
    cursor: pointer;
    color: white;
}

.content h1{
    text-align: center;
    margin: 15px;
}

.content:hover{
    transform: scale(1.2);
    color: black;
}

