@import url('https://fonts.googleapis.com/css2?family=Playwrite+GB+S:ital,wght@0,100..400;1,100..400&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
.hero{
    position: relative;
    width: 100%;
    height: 100vh;
    background: white;
}
a{
    text-transform: uppercase;
    text-decoration: none;
    color: black;
    font-weight: bold;
}
.navbar{
    width: 84%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    align-items: center;
}


.listItem{
    display: flex;
    list-style-type: none;
    gap: 20px;
    
}
a:hover{
    color: red;
    transition: all 0.6s ease;
}
.detail{
    margin-left: 8%;
    margin-top: 13%;
    
}
.navbar h1{
     color: orange;
     font-family: "Playwrite GB S", cursive;
     font-size: 45px;
     margin-top: 20px;
}
.detail h1{
    font-size: 50px;
    color: #212121;
    margin-bottom: 20px;

}
.detail span{
    color: orange;
    font-family: "Playwrite GB S", cursive;
}
.detail p{
    color: #555;
    line-height: 20px;
    margin-bottom: 30px;
}
.detail button{
  background: #212121;
  color: #fff;
  padding: 10px 18px;
  font-weight: bold;
  border-radius: 5px;
}

.imgSection{
    width: 45%;
    height: 80%;
    position: absolute;
    bottom: 0;
    right: 100px;
}

i{
    margin-top: 20px;
    margin-right: 7px;
    font-size: 25px;
}
i:hover{
    color: red;
    transition: color 0.6s ease;
    /
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    
    
}


.images{
    width: 45%;
    height: 80%;
    position: absolute;
    bottom: 0;
    right: 100px;
    
}
.images img{
    height: 100%;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: bottom 1s,left 1s;
}
.images:hover .shape{
    bottom: 40px;
}

.images:hover .boy{
    left: 45%;

}
.images .shape{
    filter: drop-shadow(0px 0px 12px orange);
}
.images .boy{
    filter: drop-shadow(0px 0px 12px grey);
}
