*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
    font-family: "gilroy";
    scrollbar-width: none;
}

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

#main {
    padding: 1vw 2vw;
    height: 100%;
    width: 100%;
    background-color: black;
}

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

#nav h3{
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 300;
}
#nav #nav-part {
    display: flex;
    align-items: center;
    gap: 50px;
}

#main h1 {
    font-size: 160px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 0.77;
    letter-spacing: -0.8px;
    width: 80%;
    margin-left: 10%;
    position: relative;
    z-index: 9;
}

#main h1:nth-child(2) {
    text-align: start;
    margin-top: 23%;
}
#main h1:nth-child(3) {
    text-align: right;
}
#main h1:nth-child(4) {
    text-align: right;
    padding-right: 17%;
}

#main img {
    position: absolute;
    height: 400px;
    transform-origin: 100% 100%;
    top: 16%;
    left: 50%;
    transform: translate(-50%, 0);
    object-fit: cover;
}

#main #img2 {
    rotate: 10deg;
}
#main #img1 {
    rotate: 15deg;
}

#footer {
    display: flex;
    justify-content: space-between;
    position: relative;
    bottom: 0;
    margin-top: 50px;
}

#footer h4 {
    padding: 15px;
    color: white;
    text-align: center;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 20px;
}


