<style>

  /* ============================
     index.html
     ============================ */
  body {
    margin: 0;
    background: #b7d9ff;
    font-family: 'Comic Sans MS', 'Fredoka One', cursive;
  }

  /* ============================
     home.html
     ============================ */
  /* Puedes agregar estilos especiales aquí */
  /* Ejemplo:
     body { background: #b7eaff; }
  */

  /* ============================
     noticias.html
     ============================ */
  /* Ejemplo:
     body { background: #b7f7ff; }
  */

  /* ============================
     sobre.html
     ============================ */
  /* Ejemplo:
     body { background: #b7ffe8; }
  */

  /* ============================
     videos.html
     ============================ */
  /* Ejemplo:
     body { background: #c4b7ff; }
  */

  /* ============================
     contacto.html
     ============================ */
  /* Ejemplo:
     body { background: #ffdeb7; }
  */


  /* ============================
     Estilo general para TODAS las páginas
     ============================ */

  header {
    background: #6ab3ff;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 5px solid #000;
  }

  header img {
    height: 55px;
  }

  nav a {
    background: #ff3b3b;
    color: white;
    text-decoration: none;
    margin-left: 15px;
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: bold;
    border: 3px solid #000;
    box-shadow: 4px 4px #000;
    transition: 0.2s;
  }

  nav a:hover {
    background: #3bff4a;
    color: #000;
    transform: scale(1.1);
  }

  .card {
    background: white;
    margin: 20px;
    padding: 20px;
    border-radius: 18px;
    border: 4px solid #000;
    box-shadow: 6px 6px #000;
  }

  footer {
    background: #6ab3ff;
    padding: 15px;
    text-align: center;
    color: #000;
    font-weight: bold;
    border-top: 5px solid #000;
  }

</style>