*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

#main{
/*
    background-color: aliceblue;
    height: 100%;
    width: 100%;
}*/

height: 100%;
  width: 100%;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.05);
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}
#nav{
    height: 100px;
    width: 100%;
    /*background-color: aqua;*/
    display:flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 30px;
}
.nav-part1{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;;
}
#nav h3{
    font-size: 20px;
    border: 1.5px solid black;
    font-weight: 500px;
    padding :5px 10px;
    border-radius: 50px;
    
}
#nav  i{
    font-size: 20px;
    border: 1.5px solid black;
    font-weight: 500;
    padding :5px 10px;
    border-radius: 50px;
    
}
#nav h1{
    text-transform: uppercase;
    font-weight: 500;
    font-size: 22px;;

}
#nav button{
    border-radius: 50px;
    padding : 7px 12px;
    border : 1.5px solid black;
    font-size: 16px;
    font-weight: 600px;
}
#nav button:hover {
    background-color: white;
    color: black;
  }
#btn2{
    background-color: orangered;
    color: aliceblue;
    border: none;
}
#h1{
    text-transform: uppercase;
    font-size: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    width: 100%;
    text-align: center;
}
img{
    height: 430px;
    width: 370px;
    object-fit: cover;
    object-position:top ;
    border-radius: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
}
img:hover {
    z-index: 5;
    transform: translate(-50%, -50%) scale(1.05) rotate(0deg);
  }
#img1{
    transform: translate(-50%,-50%) rotate(-40deg);
}
#img2{
    transform: translate(-50%,-50%) rotate(-30deg);
}
#img3{
    transform: translate(-50%,-50%) rotate(-20deg);
}
#img4{
    transform: translate(-50%,-50%) rotate(-10deg);
}
#btm-left{
    position: absolute;
    bottom: 5%;
    left: 3%;
    font-size: 18px;
}
#btm-right{
    position: absolute;
    bottom: 5%;
    right: 3%;
    font-size: 18px;
}
#btm-center{
    position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
}
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
    background: url('pexels-nur-cosar-2152749774-32671314.jpg') no-repeat center center fixed;
    background-size: cover;
    transition: background-position 0.1s ease;
    font-family: 'Poppins', sans-serif;
    perspective: 800px;
  }
  