.hero {
    /* background-color: var(--primary-color); */
    min-height: 100vh;
    height: 100vh;
    padding: var(--padding);
    padding: 30px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
    color: var(--primary-color);

}

.hero .nft-1 {
    position: absolute;
    /* z-index: 800; */
    top: 2.5vh;
}

.hero .nft-2 {
    position: absolute;
    /* z-index: 800; */
    top: 2.5vh;
    right: 80px;
}

.hero>img {
    width: 170px;
    height: 170px;

}





.hero .container {
    border-radius: 25px;
    min-width: 100%;
    height: 85%;
    background-color: var(--secondary-color);
    width: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 35px 50px;
    background-image: linear-gradient(to top, #212121, #1e1e1e, #1a1a1a, #171717, #131313);
    /* padding: 5px 10px; */
    box-shadow: inset 2px 4px 3px 0px rgb(108 108 108), 5px 5px 4px 0px rgb(144, 144, 144);

    position: relative;
    top: 90px;
}

.hero h1 {
    font-family: var(--font-4);
    font-size: 200px;
    font-weight: normal;
    width: fit-content;
    font-size: calc(100px + 7vw);
    font-family: var(--font-2-b);
    /* font-weight: bold; */
    /* color: var(--secondary-color); */



    /* background: linear-gradient(0deg, #99999901, #efefef, #efefef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; */
}

.hero .p {
    font-family: var(--font-4);
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    margin-left: auto;
    width: 100%;
}

.hero button {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 10px;
    padding: 11px 26px;
    font-size: 20px;
    font-weight: normal;
    border: none;
    height: fit-content;
    margin-top: auto;
    display: flex;
    gap: 7px;
    align-items: center;
    transition: all .4s ease;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 0.706592px 0.706592px -0.666667px, rgba(0, 0, 0, 0.08) 0px 1.80656px 1.80656px -1.33333px, rgba(0, 0, 0, 0.07) 0px 3.62176px 3.62176px -2px, rgba(0, 0, 0, 0.07) 0px 6.8656px 6.8656px -2.66667px, rgba(0, 0, 0, 0.05) 0px 13.6468px 13.6468px -3.33333px, rgba(0, 0, 0, 0.02) 0px 30px 30px -4px, rgb(255, 255, 255) 0px 3px 1px 0px inset;

    &:hover {
        cursor: pointer;
        transform: translateY(-3px);
    }

}

.hero p {
    width: min(700px, 100%);
    text-align: right;
    font-weight: lighter;
    font-size: calc(8px + 1vw);


}





@media (max-width:1000px) {
    .hero {
        height: 90vh;
    }

    .hero button {
        justify-content: center;
        font-weight: bold;
    }

    .hero .container {
        padding: 30px 40px;
    }

    .hero .p {
        flex-direction: column-reverse;
        gap: 15px;
    }

    .hero .p p {
        text-align: left;
    }

    .hero h1 {
        font-size: 20vw;
        margin: 0 auto;
    }

    .hero .container {
        width: 100%;

    }


}


@media (max-width:760px) {
    .hero h1 {
        font-style: 19vw;
    }

    .hero .container {
        padding: 25px 30px;
    }

    .hero {
        min-height: 90vh;
    }



}




@media (max-width:600px) {
    .hero h1 {
        font-style: 18vw;
    }

    .hero {
        padding: 25px 16px;
        height: 75vh;
    }

    .hero .container {
        padding: 15px 20px;
    }

    .hero>img {
        width: 130px;
        height: 130px;

    }
    .hero .nft-1, .hero .nft-2{
        top: 34px;
    }
    .hero .nft-2{
        right: 30px;

    }

}

@media (max-width:500px) {
    .hero .container {
        top: 90px;
    }


    .hero .tag {
        font-size: 22px;
    }
}