*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: gilroy;
}
html,body{
    height: 100%;
    width: 100%;
}
#main{
    height: 100%;
    width: 100%;
    background-color: white;
}
#nav{
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
}
#nav-part1{
    display: flex;
    align-items: center;
    justify-content: center;
}
#nav h3{
    font-size: 17px;
    border: 1.5px solid black;
    padding: 5px 10px;
    border-radius: 50px;
    font-weight: 500;
}
#nav h3:hover {
    background-color: black;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}
#nav i{
    font-size: 17px;
    border: 1.5px solid black;
    padding: 5px 10px;
    border-radius: 50px;
    font-weight: 500;
}

#nav i:hover {
    background-color: black;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}
#nav h1{
    font-weight: 500;
    font-size: 22px;
    text-transform: uppercase;
}
#nav button{
    padding: 7px 14px;
    border: 1.5px solid black;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
}
#nav button:nth-child(2){
    background-color: orangered;
    color: white;
}
#nav button:nth-child(2):hover{
    background-color: white;
    color: black;
    border: 1.5px solid orangered;
    cursor: pointer;
    transition: 0.3s;
}
#nav button:nth-child(1):hover{
    background-color:yellow;
    color: black;
    border: 1.5px solid orangered;
    cursor: pointer;
    transition: 0.3s;
}
#main>h1{
    font-size: 130px;
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    font-weight: 500;
}
img{
    height: 350px;
    width: 300px;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 20px;
}
#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: 19px;
}
#nav-part2{
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Responsive Design */

/* Mobile (max-width: 600px) */
@media (max-width: 600px) {
  #nav {
    flex-direction: column;
    height: auto;
    padding: 20px 10px;
    gap: 15px;
  }
  #nav-part1, #nav-part2 {
    flex-direction: column;
    gap: 10px;
  }
  #main > h1 {
    font-size: 40px;
    padding: 10px;
  }
  img {
    height: 180px;
    width: 140px;
  }
}

/* Tablet (601px to 900px) */
@media (min-width: 601px) and (max-width: 900px) {
  #nav {
    padding: 20px 30px;
  }
  #main > h1 {
    font-size: 70px;
  }
  img {
    height: 250px;
    width: 180px;
  }
}