*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: gilroy;
}

html, body {
    height: 100%; 
    margin: 0;
    padding: 0;
}

#main{
    width: 100%;
    height: 100%;
    background-color: rgb(249, 245, 241);
}

#nav{
    height: 100px;
    width: 100%;
     /*background-color: rgb(153, 0, 255); */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}

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

#nav h3{
    font-size: 16px;
    border: 1px solid black;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 50px;
}

#nav i{
    font-size: 16px;
    border: 1px solid black;
    font-weight: 500;
    padding: 2px 8px; 
    border-radius: 50px;
}

#nav h1{
    font-weight: 500;
    font-size: 22px;
    text-transform: uppercase;

}

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

}

#btn2 {
    border: none;
    color: white;
    background-color: rgb(176, 62, 20) !important;
}

#main>h1{
    font-size: 150px;
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-style: oblique;
    width: 100%;
    text-align: center;
}

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

#img1{
    transform: translate(-50%, -50%) rotate(-30deg);
}

#img2{
    transform: translate(-50%, -50%) rotate(-20deg);
}

#img3{
    transform: translate(-50%, -50%) rotate(-10deg);
}

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