:root {
    --primary-color: #ff0000;
    --secundary-color: black ;
    --bg-color: #174a8b96;
    --light-color: white;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: alien;
    src: url(./fonts/Alien\ AI.otf);
}

@font-face {
    font-family: GalanoEB;
    src: url(./fonts/GalanoGrotesqueExtraBold.otf);
}

@font-face {
    font-family: GalanoR;
    src: url(./fonts/GalanoGrotesqueRegular.otf);
}

@font-face {
    font-family: GalanoSB;
    src: url(./fonts/GalanoGrotesqueSemiBold.otf);
}

@font-face {
    font-family: kickerTrialB;
    src: url(./fonts/KickerTrial-Black.ttf);
}

@font-face {
    font-family: KickerTrialBS;
    src: url(./fonts/KickerTrial-BlackSlanted.ttf);
}

@font-face {
    font-family: Monserrat;
    src: url(./fonts/Montserrat-VariableFont_wght.ttf);
}

body::-webkit-scrollbar{
 width: 10px;
 background-color: var(--bg-color);
}

body::-webkit-scrollbar-thumb{
    background-color: var(--secundary-color);
    padding: 10px;
    border-radius: 10px;
}
body::-webkit-scrollbar-thumb:hover{
    background-color: var(--primary-color);
}

/*header {
    position: fixed;
    top: 0px;
    right: 0px;
    left: 0px;
    background-color: var(--light-color);
    border-bottom: solid 10px var(--bg-color);
    padding:1%;
}*/

header img {
    margin-top: 40px;
    top: 60px !important;
    height: 110px !important; /* Ajusta según el tamaño de tu imagen */
    width: auto !important;
}

.contact {
    color: rgb(196, 144, 144);
    position: fixed;
    left: 75%;
    top: 90%;
    text-align: end;
}

/*header nav ul {  
    display: flex;
    flex-direction: row;
    list-style: none;
    justify-content: end;
    margin-right: 100px;
}

header nav ul li {
    padding: 0px 5px;
}

header nav ul li a {
    display: flex;
    text-decoration: none;
    color: var(--primary-color);
    font-family: GalanoEB;
    font-size: larger;
    padding: 10px 5px;
}

header nav ul li a:hover {
   color: var(--bg-color);
}*/

header {
    position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100px; /* Ajusta según el tamaño deseado */
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #ffffff; /* Cambia el color si lo deseas */
      box-shadow: 0 2px 5px rgba(0,0,0,0.9); /* Opcional: sombra sutil */
      z-index: 1000; /* Asegura que esté por encima de todo */
        top: 0px;
        right: 0px;
        left: 0px;
        background-color: var(--light-color);
        border-bottom: solid 10px #174a8b00;
        padding:1%;
}





.menu-mobile {
    display: none;
    color: var(--primary-color);
    font-size: xx-large;
    justify-content: end;
    padding: 20px;
}    


.finish {
    color: var(--light-color);
    background-color: var(--bg-color);
    padding: 10px 80px;
    border-radius: 20px;
}

.finish:hover {
    background-color: yellow;
    color: var(--light-color);
}

.container {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 6.5%;
    align-items: center;
}

.container img {
    margin: 2%;
    border-radius: 10%;
}

.container div {
    background-color: #ffb2b2;
    color: var(--light-color);
}

.container div h3 {
    margin-bottom: 1%;
    font-family: Monserrat;
    font-size: 180%;
}

.container div h1 {
    font-size: 300%;
    font-family:GalanoEB;

}

.container div p {
    text-align: justify;
    font-family: GalanoSB;
}

.verificador {
    background-color: wheat;
    margin: 3% 30% 5% 30%;
    padding: 5%;
    border-radius: 10%;
    text-align: center;
    
}

.verificador h1 {
    color: var(--primary-color);
    font-family: GalanoEB;
    font-size: 300%;
}

.verificador h2 {
    color: var(--primary-color);
    font-family: GalanoEB;
    font-size: 200%;
}
 .verificador input{
    background-color: beige;
    border: 1px solid rosybrown;
    padding: 10px 100px;
    border-radius: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
 }

.verificador h5{
    color: var(--primary-color);
    font-family: GalanoR;
    margin-top: 20px;
    margin-bottom: 20px;
}

.verificador a {
    text-decoration: none;
    color: var(--light-color);
    background-color: var(--primary-color);
    padding: 10px 30px;
    font-family: Monserrat;
    font-size: larger;
    border-radius: 20px;
}

.verificador-2 a {
    text-decoration: none;
    color: var(--light-color);
    background-color: var(--primary-color);
    padding: 10px 30px;
    font-family: Monserrat;
    font-size: larger;
    border-radius: 20px;
}

.verificador a:hover {
    background-color: yellow;
   }

footer {
    background-color: var(--primary-color);
}

.footer {
    display: flex;
    flex-direction:row ;
    color: var(--light-color);
    justify-content: center;

}

.footer div{
    margin: 4%;
}

.footer div h1 {
    font-family: Monserrat;
    margin-bottom: 10%;
    font-size: 200%;
}

.footer h5 {
    font-family: Monserrat;
    font-size: 100%;
    padding-top: 10px;
    padding-bottom:10px ;
}

.footer a {
     text-decoration: none;
     color: var(--light-color);
     font-family: Monserrat;
     padding-bottom: 10px;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-two {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.footer-two a{
    text-decoration: none;
    color: rgb(238, 130, 175);
    font-family: Monserrat;
    padding-right: 5px;
}

.footer-two a:hover {
    color: var(--light-color);
}

.footer-two h5 {
    color: rgb(238, 130, 175);
    font-size: medium;
}

@media(max-width: 800px){
    .menu-mobile {
        display: flex;
    }
    .menu-screen {
        display: none;
    }
   /* header{
        padding: 0px;
        height: 13%;
    }

    header img {
        width: 20%;
        height: auto;
        top: 10px;
        left: 50px;
    }*/
    .container {
        flex-direction: column;
        margin: 30% 5% 10% 5%;
    } 

    .container img {
        width: 100%;
    }

    .container div h3 {
        font-size: 120%;
        text-align: center;
    }
    .container div h1 {
        font-size: 200%;
        text-align: center;
    }
    .container div p {
        text-align: center;
        font-size: medium;
    }
    .verificador {
        margin: 0% 5% 8% 5%;
    }
    .verificador h1 {
        font-size: 200%;
    }
    .verificador a {
        font-size: medium;
    }

    .footer {
        flex-direction:column ;
    }
    .footer div h1 {
        font-size: 150%;
        margin-bottom: 1%;
    }
    .footer h5 {
        font-size: 80%;
    }
    .footer-two a{
        text-decoration: none;
        color: rgb(238, 130, 175);
        font-family: Monserrat;
        font-size: small;
        padding-right: 5px;
    }  
    
    .contact {
        width: 40%;
        left: 58%;
        top: 95%;
    }
}



 .imagen-premio {
    width: 100%;
    max-width: 32%; /* tres por fila con espacio entre ellas */
    height: auto;
    object-fit: contain;
  }

  @media (max-width: 768px) {
    .imagen-premio {
      max-width: 48%; /* 2 por fila en pantallas medianas */
    }
  }

  @media (max-width: 480px) {
    .imagen-premio {
      max-width: 100%; /* 1 por fila en pantallas pequeñas */
    }
  }


 .splide__slide {
    font-family: Monserrat;
    color:white !important;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 84px;
      height: 300px;
      color: #333;
    }

    <style>
  .numero-grid-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: GalanoEB;
    text-align: center;
  }

  .numero-grid-container h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: bold;
  }

  .numero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    gap: 10px;
  }

  .numero-item {
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    padding: 12px 0;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
  }

  .numero-item:hover {
    transform: scale(1.05);
    background-color: #ffe7f0;
    color: #d40b63;
    cursor: pointer;
  }
</style>
