body {
  font-family: Arial, sans-serif;
  background-color: #fff8dc; /* fondo color crema claro */
  color: #333;
  margin: 20px;
  line-height: 1.6;
}

header {
  text-align: center;
  background-color: #ffdead; /* un tono suave */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

header h1 {
  color: #d2691e; /* marrón chocolate */
  margin-bottom: 10px;
}

img {
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  margin-top: 10px;
}

h2 {
  color: #d2691e;
  border-bottom: 2px solid #d2691e;
  padding-bottom: 5px;
}

ul, ol {
  max-width: 600px;
  margin: 0 auto 30px auto;
  background-color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(210,105,30,0.2);
}

.receta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
  border-bottom: 2px solid #ccc;
  padding-bottom: 30px;
}

.receta-arriba {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.lado-izquierdo {
  max-width: 300px;
  flex-shrink: 0;
}

.lado-derecho {
  flex: 1;
}

.pasos {
  margin-top: 20px;
}

img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.menu-recetas {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap; /* que se acomoden si la pantalla es chica */
}

.cuadro-receta {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 100px;
  background-color: #f5b971;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
  cursor: pointer;
  text-align: center;
  padding: 10px;
}

.cuadro-receta:hover {
  background-color: #d99a4b;
}

