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

html,
body {
    width: 100%;
    height: 100%;
}

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

.nav {
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

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

.nav-part1 h2 {
    font-size: 17px;
    border: 1.5px solid black;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 50px;
}

.nav-part1 i {
    font-size: 16px;
    border: 1.5px solid black;
    font-weight: 500;
    padding: 5px 8px;
    border-radius: 50px;
}

.nav-part2 h1 {
    font-weight: 500;
    font-size: 20px;
    text-transform: uppercase;
}

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

#btn2 {
    font-size: 17px;
    border: none;
    background-color: orangered;
    color: wheat;
}

.main>h1 {
    /* background-color: red; */
    font-size: 150px;
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

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

#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: 17px;
}

.scroll-indicator {
    position: absolute;
    bottom: 1%;
    left: 50%;
    width: 80px;
    height: 40px;
    border: 3px solid black;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 1.5s infinite;
}

.scroll-indicator i {
    font-size: 30px;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

#btm-right {
    position: absolute;
    right: 5%;
    bottom: 5%;
}

#btm-right i {
    margin: 0 16px;
}

#btm-right h2 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
}

