/* Estilo global */
body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-size: cover;
    background-position: center;
}

/* Estilo do cabeçalho */
header {
    background-color: rgba(178, 34, 34, 0.8);
    width: 100%;
    text-align: center;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header h1 {
    margin: 0;
    font-size: 3em;
    font-family: 'Lobster', cursive;
    color: #fff;
}

/* Estilo do conteúdo */
.content {
    width: 80%;
    margin: 20px 0;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
}

.category {
    display: none;
    margin-bottom: 20px;
}

.category h2 {
    background-color: #b22222;
    padding: 10px;
    margin: 0;
    border-radius: 5px 5px 0 0;
    text-align: center;
}

.category ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #b22222;
    border-radius: 0 0 5px 5px;
}

.category li {
    background-color: #1a1a1a;
    padding: 15px;
    border-bottom: 1px solid #333;
    font-size: 1.5em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cut-name {
    text-align: left;
}

.cut-price {
    text-align: right;
}

.category li:last-child {
    border-bottom: none;
}

/* Estilo do rodapé */
footer {
    width: 100%;
    text-align: center;
    padding: 10px;
    background-color: #b22222;
    color: #fff;
    position: fixed;
    bottom: 0;
}

marquee {
    font-size: 20px;
    color: #fff;
}