@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    background-color: black;
}
#container-buttons{
    margin: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
div button{
    background-color: #79cb12;
    border: none;
    border-radius: 5px;
    color: #000000;
    padding: 10px;
    cursor: pointer;
    font-weight: bold;
    width: 140px;
    height: 100px;
}
div button:hover{
    opacity: 0.8;
}
ul{
    list-style: none; /* tira a bolinha do lado */
    display: grid;
    grid-template-columns: 220px 220px 220px;
    gap: 20px;
    justify-content: center;
    padding-top: 20px;
}
li{
    border: 2px solid #8133FF;
    padding: 5px;
    border-radius: 5px;
    align-self: center;
}
img{
    width: 100%;
    border-radius: 5px;
}
p{
    color: aliceblue;
}
.item-price{
    font-weight: bold;
    color: #79cb12;
    
}
