body, html {
  height: 100%;
  margin: 0;
  padding: 0;
}

.bg-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden; /* Para asegurarse de que el desplazamiento no afecte la imagen de fondo */
  background-image: url('../img/PortadaKenan.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.container {
  width: 100%;
  font-family: Arial, sans-serif;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto; /* Permite el desplazamiento dentro del contenedor */
  height: 100%; /* Asegura que el contenedor tenga la altura completa */
}

.titulo h1 {
  font-size: 40px;
  font-weight: 600;
  color: #fdfdfe;
  text-shadow: 0px 0px 5px #b393d3, 0px 0px 10px #b393d3, 0px 0px 10px #b393d3,
    0px 0px 20px #b393d3;
}
