body, html {
  height: 100%;
  margin: 0;
  font-family: 'Bebas Neue', sans-serif;
  color: white;
}

body {
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  display: none;
}

.bg-cover {
  background: url('../img/bg/By-LB-3044.avif') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  height: 100vh;
  position: relative;
  z-index: 1;
}

.overlay {
  /*background-color: rgba(0, 0, 0, 0.7);*/
  background-color: #012208;
  background-image: url("../img/snow.png");
  opacity: 0.8;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

#verificarInscripcion{
  background:    linear-gradient(rgb(255 147 0 / 75%), rgb(255 147 0 / 75%)), url(../img/By-LB-1017.avif) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}

.content-center {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

.logo {
  max-width: 200px;
  margin-bottom: 1rem;
}

.count-box {
  /*background: rgba(255, 255, 255, 0.5);*/
  background: rgba(5, 32, 8, 0.8);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  min-width: 100px;
}

.count-box span {
  display: block;
  font-size: 3rem;
}

.count-box small {
  font-size: 1rem;
  letter-spacing: 1px;
}

  .count-box {
    padding: 0.8rem 1.2rem;
  }

  .count-box span {
    font-size: 2.2rem;
  }

  .count-box small {
    font-size: 0.9rem;
  }
  
.scroll-down-arrow {
  animation: bounce 2s infinite;
  margin-top: 2rem;
  display: inline-block;
  cursor: pointer;
}

.imgHistoria{
    background: linear-gradient(rgb(38 46 68 / 28%), rgb(38 46 68 / 28%)), url(../img/By-LB-1590.avif) no-repeat center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}