* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    color: #fff;
}

html,
body {
    height: 100%;
    width: 100%;
    font-family: 'Poppins',     }

#main {
    position: relative;
    width: 100%;
    min-height: 220vh;
    background-color: #090909;
    overflow: hidden;

}

.nav {
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}

.nav-part2 {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 2rem;
}

.nav h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 400;
    font-family: gilroy, sans-serif;
}

#main h1 {
    font-size: 150px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 120px;
    width: 80%;
    margin-left: 10%;
    position: relative;
    z-index: 3;
}

#main h1:nth-child(2) {
    margin-top: 180px;
}

#main h1:nth-child(3) {
    text-align: center;
}

#main h1:nth-child(4) {
    text-align: center;

}

.image {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 400px;
    transform: translate(-50%, -50%);
    z-index: 1;
    overflow: hidden;

}

.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



@media (max-width:768px) {
#main {
    position: relative;
    width: 100%;
    min-height: 220vh;
    background-color: #090909;
    overflow: hidden;
}

.nav {
    padding: 0rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    height: 50px;
}

.nav-part2 {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 2rem;
}

.nav h3 {
    font-size: .65rem;
    text-transform: uppercase;
    font-weight: 500;
    font-family: gilroy, sans-serif;
}

#main h1 {
    font-size: 55px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 120px;
    width: 80%;
    margin-left: 8%;
    position: relative;
    z-index: 3;
}

#main h1:nth-child(2) {
    margin-top: 150px;
}

#main h1:nth-child(3) {
    text-align: center;
}

#main h1:nth-child(4) {
    text-align: center;

}

.image {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 300px;
    transform: translate(-50%, -50%);
    z-index: 1;
    overflow: hidden;

}

.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




    
