 *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   } 

body{
    background-image: url("./images/assets/fondo_sorteo.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center; 
    background-position: 0 0; 
    background-size: cover;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

button{
    border: none;
    background-color: transparent;
}
.sorteo-btn{
    background-image: url("./images/assets/fondo_boton.png");
    background-size: 100% 100%;
    width: 400px;
    margin-top: -2px;
    border-radius: 120px; 
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    animation: none; /* Detiene cualquier animación existente */

}

.sorteo-btn:hover {
transform: scale(1.1);
animation: bubbleColoring 0.5s infinite;
}

@keyframes bubbleColoring {
0% {
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
}
50% {
  box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
}
100% {
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}
}

.container{
    width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    border-radius: 20px;
}


.title{
  font-size: 30px;
}

.hidden {
    display: none;
}

.zoomed {
  animation: zoom 2.5s ease-in-out;
}

@keyframes zoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.ganador{
    margin-top: 20px;
}

.numberContainer{
    font-size: 36px;
    font-weight: bold;
    margin-top: 10px;
}



/* CAMBIOS 2025 */
.contenedor-ganador{
    background-image: url("./images/assets/contador.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}
#azar{
    color: rgb(66, 9, 120);
    font-size: 3rem;
    padding: 7%;
    margin: 0;
}
#sorteo-button{
    margin-bottom: 40px;
    margin-top: 15px;
    margin-inline: auto;
    padding-top: 18px;
    padding-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
td.ganador{
    color: white;
    font-size: 82px;
    margin-inline: 3px;
    font-weight: bold;
    background-position: center;
    text-align: center;
    padding: 10px;
}