body {
    font-family: 'Oswald', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

header {
    background-color: #007A33;
    color: white;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    justify-content: center; /* Centrar horizontalmente */
    align-items: center;
    flex-direction: column; /* Alinear el logo verticalmente */
    text-align: center; /* Centrar el texto dentro del logo */
}

.logo img {
    width: 120px; /* Tamaño mediano */
    height: auto;
}

button {
    padding: 5px 10px;
    cursor: pointer;
}


main {
    padding: 20px;
    text-align: center;
    width: 100%;
}

h1 {
    text-align: center;
}

h2 {
    text-align: center;
    color: #F8E600;
}

ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

li {
    background-color: #121212;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #F8E600;
    border-radius: 5px;
    width: 80%;
    max-width: 500px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
}

li img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #dddddd;
    margin-bottom: 10px;
}

li h3 {
    margin: 5px 0;
    font-size: 1.2em;
}

li p {
    margin: 5px 0;
    color: #FFFF;
    font-size: 20px;
}

li .price {
    font-weight: bold;
    color: #DA291C;
}

h3 {
    color: #ffff;
}

label {
    color: #ffff;
    font-size: 30px;
}

input {
    background-color: #121212;
    border: 2px solid #F8E600;
    color: #fff;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    width: calc(60% - 24px); /* Ajustar ancho menos el padding */
    margin-bottom: 15px;
}

textarea {
    background-color: #121212;
    border: 2px solid #F8E600;
    color: #fff;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    width: calc(60% - 24px); /* Ajustar ancho menos el padding */
    margin-bottom: 15px;
}

textarea:focus {
    outline: none;
    box-shadow: 0 0 5px #F8E600;
}

input:focus {
    outline: none;
    box-shadow: 0 0 5px #F8E600;
}

button {
    color:#ffff;
    background-color:#DA291C;
    border-radius: 5px;
    font-family: "Oswald", sans-serif;
    font-size: 25px;
    border-color:#DA291C;   
}

button:hover {
    color:#DA291C;
    background-color: #121212;
    border-color: #DA291C;
    transition: 0.3s;
}

span {
        font-weight: bold;
        color: #DA291C;
        font-size: 25px;
}

main {
    padding: 0px;
}
/* Media queries para hacer el diseño responsive */

@media screen and (max-width: 768px) {
/* Estilos generales */
body {
    font-family: 'Oswald', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
}

/* Estilos del encabezado */
header {
    background-color: #007A33;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    max-width: 100%;
    height: auto;
}

/* Estilos de la lista del menú */
ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap; /* Permitir que los elementos se envuelvan en pantallas pequeñas */
    justify-content: center;
    align-items: center;
}

li {
    background-color: #121212;
    margin: 10px;
    padding: 10px;
    border: 1px solid #F8E600;
    border-radius: 5px;
    max-width: 300px; /* Limitar el ancho máximo de los elementos en pantallas pequeñas */
    flex: 1 1 300px; /* Forzar a los elementos a tener un tamaño mínimo en pantallas pequeñas */
}
}