body, html {
    margin: 0;
    padding: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
  
  }
  
  .content {
    flex: 1;
  }
  footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px; /* altura fija */
    background-color: rgb(0, 0, 0);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

  
  
  .footer-text {
    margin: 0 auto;
    text-align: center;
  }
  
  .social-icons {
    display: flex;
    gap: 15px;
    position: relative;
    right: 30px; 
  }
  
  .social-icons a {
    font-size: 30px;
    color:#5ecaeb;
    text-decoration: none;
    text-shadow: 0px 0px 9px #002fff;
  }
  
  .social-icons a:hover {
    color: #ccc;
  }

  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgb(230, 243, 241); 
  }

header {
    background-color: rgb(4, 4, 4);
    color: rgb(255, 255, 255);
    padding: 20px;
    text-align: center;
}

nav {
    display: flex;
    justify-content: center;
    background-color: rgb(66, 65, 65);
}

nav a {
    color: rgb(255, 255, 255);
    padding: 15px;
    text-decoration: none;
    display: block;
}

nav a:hover {
    background-color: #555;
}

.hero {
    background-color: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
}



.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80vh;
    background-color: rgb(230, 243, 241);
    text-align: center; 
    font-family: Arial; 
    font-size: 20px; 
    COLOR: #bf1212; 
    text-shadow: 0px 0px 9px #508AD3;
    margin: 0;
    padding: 0;
    height: 100vh; /* Asegura que cubra toda la pantalla */
    background: url('0.gif') no-repeat center center fixed; /* Ruta del GIF */
    background-size: cover; /* Ajusta para cubrir todo el fondo */
    font-family: Arial, sans-serif;
    color: rgb(0, 0, 0);
}

.logo {
    position: fixed; /* Permite que el logo permanezca visible al desplazarse */
    top: 0;
    left: 0;
    padding: 10px;
    background-color: black; /* Fondo opcional */
}


  
  .title {
    text-align: center;
    color: #007BFF;
    margin: 20px 0;
  }
  
  .grid-container {
    display: grid;
    grid-template-areas: 
        "left right"
        "bottom-left bottom-right";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 20px;
    padding: 20px;
    height: 70vh;
  }
  
  .section {
    border: 2px solid #000000;
    padding: 15px;
    border-radius: 8px;
    background-color: #474747;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px; /* Espacio entre la sección y el footer */
  }
  
  
  .left {
    grid-area: left;
  }
  
  .right {
    grid-area: right;
  }
  
  .bottom-left {
    grid-area: bottom-left;
  }
  
  .bottom-right {
    grid-area: bottom-right;
  }
  
  h2 {
    margin: 0 0 10px;
    font-size: 1.5em;
    color: #000000;
  }
  
 

  body {
    margin: 0;
    padding: 0;
    height: 100vh; /* Asegura que cubra toda la pantalla */
    background: url('0.gif') no-repeat center center fixed; /* Ruta del GIF */
      background-size: cover; /* Ajusta para cubrir todo el fondo */
    font-family: Arial, sans-serif;
    color: rgb(0, 0, 0);
    
}

.content {
    text-align: center;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.so {
  background-color: #000000;
}