/* Fondo y estructura general */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('cobaev.jpg');
    background-size: cover;
    background-position: center;
    transition: background 0.5s ease, color 0.5s ease;
  }
  
  /* Contenedor principal */
  .container {
    width: 80%;
    margin: 40px auto;
    background-color: #f5e1c0; /* Color arena */
    color: #3d0000;         /* Texto vino */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.5s ease, color 0.5s ease;
  }
  
  /* Encabezado */
  header {
    background-color: #700000; /* Color vino */
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 5px #000;
    transition: background-color 0.5s ease;
  }
  
  /* Sección de información */
  .info {
    text-align: justify;
    padding: 20px;
    line-height: 1.6;
  }
  
  /* Galería de imágenes */
  .imagen-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }
  
  .imagen-grid img {
    width: 45%;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 10px;
    background-color: #700000;
    color: white;
    font-size: 14px;
    transition: background-color 0.5s ease;
  }
  
  