body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    max-width: 500px;
    text-align: center;
}

h1 {
    font-size: 2em;
}

p {
    font-size: 1em;
}

.fake-links {
    list-style-type: none;
    padding: 0;
}

.fake-links li {
    color: #0000EE;
    text-decoration: underline;
    cursor: pointer;
}
  
  /* Fin de boton para ir atras */

  @media (max-width: 600px) {
    .container {
        max-width: 330px;
    }
  }

  .image-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.image-container img {
    width: 50px;
    height: auto;
}

/* Página de carga */

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 1s;
  z-index: 10000;
}

#loader.fade-out {
  opacity: 0;
}

#loader img {
  max-width: 100%;
  max-height: 100%;
}

/* Fin de página de carga */

/* HEADER FIJO */
.encabezado {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: red;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.contenido-encabezado {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.logo {
  height: 50px;
}

/* BOTÓN HAMBURGUESA */
.hamburguesa {
  position: absolute;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: white;
}

/* MENÚ LATERAL DESPLEGABLE */
.menu-lateral {
  font-family:  sans-serif;
  height: 100%;
  width: 250px;
  background-color: #000000; /* CAMBIA EL COLOR DE FONDO ACÁ */
  position: fixed;
  top: 0;
  right: -250px;
  transition: right 0.3s ease;
  z-index: 9999;
  padding-top: 60px;
}

.menu-lateral a {
  padding: 15px 25px;
  display: block;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.menu-lateral a:hover {
  background-color: #850000; /* COLOR AL PASAR EL MOUSE */
}

.menu-lateral .cerrar {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: white;
}