body {
    margin: 0;
    padding: 0;
    background: #ccee66;
    color: white;
    padding: 20px 160px;
    height: 100vh;
    font-family: "Noto Sans", sans-serif;
    overflow: hidden;
}

body::before {
    content: '';
    background: #383838;
    position: absolute;
    top: 0;
    left: -600px;
    transform: rotate(-70deg);
    width: 100%;
    height: 120%;

}

body::after {
    content: 'NIKE';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: black;
    font-size: 250px;
    font-weight: bold;
    opacity: 0.5;

}

.virgula-nike {
    width: 80px;
    position: relative;
    z-index: 1;

}
h1 {
    font-size: 80px;
   }

h4 {
    font-size: 30px;
}

h2 {
    font-size: 80px;
}

p {
    font-size: 16px;
    margin-bottom: 40px;
}

.botao-carrinho {
    background: #a3be52;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    color: black;
    cursor: pointer;
    transition: 0.5s;
}

.botao-carrinho:hover {
    opacity: 0.7;
}

.imagem-tenis {
    width: 800px;
    transform: rotate(-25deg);

}

.caixa-principal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75%;
    position: relative;
    z-index: 1;
}
.caixa-texto {
    max-width: 500px;
}
.caixa-botoes {
    z-index: 2;
    position: relative;
    display: flex;
    gap: 20px;
    

}
.botoes {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    cursor: pointer;
}
.botoes:active{
    opacity: 0.6;
}
.verde{
    background: #ccee66;

}
.azul {
    background: #58cced;

}
.rosa{
    background: #ff9eb5;

}