:root{
    --color-white: #fff;
    --color-black: #3a3a3a;
    --index: calc(1vw + 1vh);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    color: var(--color-white);
    font-size: 22px;
    line-height: 180%;
    font-family: 'Courier New', Courier, monospace;
}
h1{
    font-size: clamp(22px, calc(var(--index) * 3), 50px);
    font-weight: 700;
    letter-spacing: 4px;
}
body{
    overflow-x: hidden;
    background-color: var(--color-black);
}
.conteiner{
    width: 90vw;
    margin: auto;
}
header{
    width: 100vw;
    height: 100px;
    position: sticky;
    top: 0;
    z-index: 100;
    /* background-color: var(--color-black); */
    background-color: var(--color-black);
}
.logo a{
    font-size: clamp(22px, calc(var(--index) * 1.5), 40px);
    font-weight: 500;
    letter-spacing: 10px;
}
.df-header{
    height: 100%;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

main{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    gap: 1.3rem;
}
section{
    width: 80%;
    min-height: 50vh;
    padding-top: 5rem;
}

.set-cart{
    width: 100%;
    margin-top: 5rem;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    gap: 1.2rem;
}
.cart{
    border-radius: 25px;
    overflow: hidden;
    width: 300px;
    height: 400px;
    background-color: #00000081;
    padding: 10px;
    display: flex;
    flex-flow: column;
}
.cart-img{
    flex: 1 1 100%;
    /* height: 80%; */
    background-color: #3a3a3a;
    border-radius: 20px;
    overflow: hidden;
}
.cart-img img{
    width: 100%;
    height: auto;
}
.cart-button small{
    font-size: 16px;
    color: #ffffff77;
    line-height: 100%;
}
.button{
    letter-spacing: 1px;
    margin: auto;
    border-radius: 20px;
    text-decoration: none;
    background-color: #f3e528;
    color: #000000e3;
    font-weight: 700;
    padding: 5px 15px;
    border: 1px solid #f3e528;
    transition: all .3s;
    cursor: pointer;
}
.button:hover{
    border: 1px solid #f3e528;
    background-color: transparent;
    color: var(--color-white);
    box-shadow: 0 0 10px #f3e528;
}
.full-img{
    width: 100%;
    padding: 5rem 1rem;
}
.full-img img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
footer{
    width: 100%;
    min-height: 10vh;
}