*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}

html, body{
    width: 100vw;
    height: 100vh;
}

/* Fonts */

.plaster-regular {
    font-family: "Plaster", system-ui;
    font-weight: 400;
    font-style: normal;
}

.comfortaa {
    font-family: "Comfortaa", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.boldonse-regular {
    font-family: "Boldonse", system-ui;
    font-weight: 400;
    font-style: normal;
}

.main{
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

nav{
    background-color: bisque;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

nav h1{
    font-family: "Plaster";
    font-size: 2.5rem;
    letter-spacing: -2px;
}

nav .nav-contents ul{
    display: flex;
    align-items: center;
    gap: 50px;
}

nav .nav-contents ul li{
    list-style: none;
}

nav .nav-contents ul li a{
    text-decoration: none;
    cursor: pointer;
    font-family: "Comfortaa";
    font-weight: 900;
    font-size: 1.1rem;
    color: black;
}

.hamburger{
    display: none;
}

.hero-section{
    width: 100%;
    height: 100vh;
    background-color: bisque;
    display: flex;
    align-items: center;
}

.hero-section .left{
    width: 40%;
    height: 100%;
    position: relative;
}

.hero-section .right{
    width: 60%;
    height: 100%;
    position: relative;
}

.hero-section .right .main-hero-block .text-box h1{
    font-family: "Plaster";
    text-align: center;
    font-size: 13rem;
    line-height: 155px;
}

.hero-section .left .text-box-down h1{
    font-family: "Plaster";
    text-align: center;
    font-size: 10rem;
    line-height: 120px;
}

.first-row{
    position: absolute;
    top: 2%;
    left: 0%;
    display: flex;
    flex-direction: column;
    /* background-image: url("https://freakins.com/cdn/shop/files/16july_19794-Edit.jpg?v=1721391718&width=800"); */
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: cover;
    letter-spacing: -15px;
    cursor: pointer;
    transition: background-image 1s ease-in-out;
}

.second-row {
    position: absolute;
    top: 2%;
    left: 35%;
    display: flex;
    flex-direction: column;
    letter-spacing: -15px;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: cover;
    cursor: pointer;
    transition: background-image 1s ease-in-out;
}

.third-row {
    position: absolute;
    top: 50%;
    left: 10%;
    display: flex;
    flex-direction: column;
    letter-spacing: -10px;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: cover;
    cursor: pointer;
    transition: background-image 1s ease-in-out;
}

.fourth-row {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column;
    letter-spacing: -10px;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: cover;
    cursor: pointer;
    transition: background-image 1s ease-in-out;
}

.main-bold-text {
    position: absolute;
    top: 10%;
    left: 10%;
    font-family: "Boldonse";
    text-transform: uppercase;
    font-size: 2rem;
    line-height: 70px;
}

.cover-text{
    position: absolute;
    top: 60%;
    left: 10%;
    font-family: "Comfortaa";
    font-size: 1.5rem;
    max-width: 600px;
}

.neon-green{
    background-color: greenyellow;
    box-shadow: 1px 1px 1px black;
    border-radius: 2px;
}

.neon-orange{
    background-color: orange;
    box-shadow: 1px 1px 1px black;
    border-radius: 2px;
}

.shop-now{
    position: absolute;
    top: 32%;
    left: 10%;
    width: 200px;
    height: 50px;
    background-color: greenyellow;
    box-shadow: 2px 2px 1px black;
    text-shadow: 2px 2px 1px lightgray;
    border: none;
    border-radius: 3px;
    font-size: 1.2rem;
    font-family: "Boldonse";
    clip-path: polygon(0% 0%, 88% 0, 100% 50%, 88% 100%, 0% 100%);
}

.scroll-div{
    position: absolute;
    bottom: 16%;
    right: 0%;
}

.scroll-div img{
    width: 60%;
}

.clothing-gif{
    position: absolute;
    top: 20.5%;
    left: 10%;
    z-index: 10;
}

.clothing-gif img{
    width: 120%;
}

/* TABLET RESPONSIVE */

@media screen and (max-width:1200px) {
    nav h1{
        font-size: 2rem;
    }
    nav .nav-contents ul li a{
        font-size: .9rem;
    }

    .hero-section .right .main-hero-block .text-box h1{
        font-size: 10rem;
        line-height: 115px;
        letter-spacing: -12px;
    }

    .hero-section .left .text-box-down h1{
        font-size: 8rem;
        line-height: 95px;
        letter-spacing: -10px;
    }

    .first-row{
        top: 10%;
        left: 10%;
    }
    .second-row{
        top: 10%;
        left: 45%;
    }

    .main-bold-text {
        font-size: 1.5rem;
        line-height: 50px;
    }
    .cover-text{
        top: 55%;
        left: 11%;
        font-size: 1.2rem;
        max-width: 550px;
    }

    .shop-now{
        top: 30%;
        left: 10%;
        width: 150px;
        height: 40px;
        font-size: 1rem;
    }

    .scroll-div{
        bottom: 21%;
        right: -5%;
    }

    .scroll-div img{
        width: 50%;
    }

    .clothing-gif {
        top: 23.5%;
        left: 35%;
    }
}

/* MOBILE RESPONSIVENESS */

@media screen and (max-width:431px) {
    nav h1{
        font-size: 1.5rem;
    }
    .nav-contents, .cart{
        display: none;
    }
    .hamburger{
        display: block;
    }

    .hero-section{
        flex-direction: column;
    }
    .clothing-gif{
        top: 4%;
        left: 70%;
        width: 80%;
    }
    .main-bold-text{
        top: 4%;
        left: -65%;
        font-size: 1.2rem;
        line-height: 40px;
        max-width: 1000px;
    }
    .shop-now{
        top: 21.5%;
        left: 80%;
        width: 150px;
        height: 40px;
        border-radius: 4px;
        font-size: .9rem;
    }
    .hero-section .left .text-box-down h1{
        font-size: 6.2rem;
        line-height: 80px;
        letter-spacing: -5px;
    }
    .third-row {
        top: 40%;
        left: -67%;
        letter-spacing: -10px;
    }
    .fourth-row{
        top: 40%;
        left: 30%;
    }
    .cover-text{
        top: -15%;
        left: -5%;
        font-size: 1rem;
        max-width: 850px;
    }
    .hero-section .right .main-hero-block .text-box h1{
        font-size: 7rem;
        line-height: 78px;
        letter-spacing: -7px;
    }
    .first-row {
        top: 15%;
        left: -28%;
    }
    .second-row{
        top: 15%;
        left: 35%;
    }

    .scroll-div{
        bottom: 28%;
        right: 2%;
    }
    .scroll-div img{
        width: 40%;
    }
}