body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    /* background: linear-gradient(to bottom, #fceabb, #f8b500, #f06d06); */
    color: #333;
    display: flex;
    justify-content: center;

    /* Color base: marrón suave tipo pavo */
    background-color: #c4a484;
  
    /* Patrón SVG con pavitos, intercalados */
    background-image:
      url("data:image/svg+xml;utf8,\
      <svg xmlns='http://www.w3.org/2000/svg' width='80' height='80'>\
        <text x='10' y='30' font-size='30'>🦃</text>\
        <text x='50' y='70' font-size='30'>🦃</text>\
      </svg>");
    background-repeat: repeat;
    background-size: 80px 80px;
  
    /* La capa blanquecina translúcida encima del fondo */
    position: relative;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.6); /* capa blanca semitransparente */
  pointer-events: none; /* no bloquea clics */
  z-index: -1; /* detrás del contenido */
}

.container {
    max-width: 800px;
    width: 100%;
    padding: 20px;
    text-align: center;
}

header h1 {
    font-size: 3em;
    margin-bottom: 0.2em;
    text-shadow: 2px 2px #fff;
}

.slogan {
    font-style: italic;
    font-size: 1.2em;
}

.main-image {
    width: 200px;
    margin: 20px 0;
}

.buttons {
    margin: 20px 0;
}

.btn {
    display: inline-block;
    margin: 0 10px;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s;
}

.btn:hover {
    transform: scale(1.1);
}

.btn-join {
    background-color: #4caf50;
    color: white;
}

.btn-info {
    background-color: #ffeb3b;
    color: #333;
}

.info, .utilities {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 16px;
    margin-top: 20px;
}

footer {
    margin-top: 40px;
    font-size: 0.9em;
}
  