*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body{
  width: 100%;
  height: 100%;
  font-family: sans-serif;
}

.main{
  height: 100%;
  width: 100%;
  background-color: white;
}

#nav{
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 50px;
  padding-right: 50px;
}

#nav-part1{
  display: flex;
  align-items: center;
  justify-content: center;
}

#nav-part1 h3{
  font-size: 16px;
  font-weight: 200;
  border: 1px solid black;
  padding: 5px 10px 5px 10px;
  border-radius: 50px;
}

#nav-part1 i{
   border: 1px solid black;
    padding: 6px 6px 6px 6px;
   border-radius: 50%;
}

#nav-part2{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
#nav-part2 i{
  font-size: 25px;
  color: white;
  background-color: orangered;
  border-radius: 50%;
  padding: 4px 4px 4px 4px;
}

#nav-part2 h3{
  font-weight: 300;
}

#nav button{
  padding: 7px 12px;
  font-size: 16px;
  border-radius: 50px;
  border: 1.5px  solid black;
  background-color: white;
}

#nav-part3 #btn2{
  background-color: orangered;
  color: white;
  border: none;
}

h1{
  font-size: 130px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  font-weight: 300;
}

img{
  height: 400px;
  width: 300px;
  object-fit: cover;
  object-position: top;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
}

#img1{
   transform: translate(-50%,-50%);
  z-index: 4;
}
#img2{
   z-index: 3;
 transform: translate(-50%,-50%) rotate(-7deg);
}
#img3{
   z-index: 2;
  transform: translate(-50%,-50%) rotate(-14deg);
}
#img4{
   z-index: 1;
  transform: translate(-50%,-50%) rotate(-21deg);
}

#img2:hover{
  z-index: 10;
}
#img3:hover{
  z-index: 10;
}
#img4:hover{
  z-index: 10;
}


#btm-left{
  position: absolute;
  bottom: 5%;
  left: 3%;
  font-size: 15px;
  font-weight: 600;
}

#icon{
  display: flex;
  position: absolute;
  bottom: 60px;
  right: 80px;
  gap: 15px;
}

p{
  font-size: 15px;
  position: absolute;
  bottom: 35px;
  right: 40px;
  gap: 15px;
}

