html, body {
    height: 100%;
    margin: 0;
    overflow-y: scroll;
    overflow-x: hidden;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #888; 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555; 
  }

#h1 {
    margin: 25px;
    text-align: center;
    color: white;
    text-shadow: 
        -1px -1px 0 #000,  
         1px -1px 0 #000,
        -1px  1px 0 #000,
         1px  1px 0 #000;
}

footer {
    background-color: rgba(3,132,67,255);
    margin-top: 2%;
    height: 150px;
    text-align: right;
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    align-content: space-around;
    flex-wrap: nowrap;
    align-items: center;
}

footer #img {
    width: 100px;
    height: 100px;

}

footer #footer-h{
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: nowrap;
    align-content: stretch;
    justify-content: space-between;
    align-items: flex-end;
    color: white !important;
    padding: 10px;
}

.bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}
body {
     /* Permite el scroll vertical */
    background-color: #000; /* Cambia a un color que se asemeje al fondo de tu imagen */
}

.bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    filter: blur(10px);
    z-index: -1; /* Asegúrate de que el fondo borroso esté detrás del contenido */
}

/* Ajuste para pantallas más pequeñas */
@media (max-height: 800px) {
  .bg::before {
      height: 120vh; /* Usa la altura del viewport en pantallas pequeñas */
  }
}