*{
    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; 
    background-attachment: fixed;  /* Optional nice effect */
    min-height: 100vh;
    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);
}

.img img{

    object-fit: cover;   

    height: 400px;
    width: 400px;
    border-radius: 10px;
    transition: all 1s ease-out;
}

.img img:hover{
    transform: scale(1.1);
}

.img{
     display: flex;
    flex-wrap: wrap;     
    gap: 20px;            
    justify-content: center;
    width: 80%;
    margin: auto;
    padding: 25px;
    border: none;
    background-color:transparent;
    color: black;
    border-radius: 10px;
    transition: all .5s ease-out;
    box-shadow: 0 6px 6px black;
}

.img h1 {
    width: 100%;          
    text-align: center;
    margin: 25px 0;
    color: white;
}

.img .pt h4{
    text-align: center;
    text-decoration: wavy;
    margin: 15px 0;
    font-size: larger;
}

.img .pt img{
    box-shadow: 0 6px 6px black;
}