@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-image: url('./img/Plano-de-Fundo-Hamburguer.png');
}

.container-buttons {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    background-color: #000;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    font-size: 20px;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #fff;
    color: #000;
    opacity: 0.8;
    transform: translateY(-3px) scale(1.05);
}

button:active {
    background-color: #000;
    color: #fff;
    opacity: 0.8;
}

ul {
    list-style: none;
    display: grid;
    grid-template-columns: 200px 200px 200px;
    justify-content: center;
    gap: 20px;
}

li {
    border: 2px solid #bead13;
    border-radius: 5px;
    padding: 5px;

}

img {
    width: 100%;
    height: 75%;
    border-radius: 5px;
}


p {
    text-align: center;
    font-size: 15px;
    color: #ffffff;
}

.item-price {
    font-weight: bold;
    color: #79cb15;
}

@media screen and (max-width: 800px) {

    .container-buttons {
        gap: 10px;
    }

    button {
        font-size: 0.8rem;
        padding: 5px 10px;
    }

    ul {
        grid-template-columns: 150px 150px;
    }
}