.container{
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}


h1{
    font-size: 40px;
}
.prize {
    animation: pulseColor 2s infinite ease-in-out;
}

@keyframes pulseColor {
    0% {
        color: red;
    }
    25% {
        color: yellow;
    }
    50% {
        color: green;
    }
    75% {
        color: purple;
    }
    100% {
        color: red;
    }
}

.number_div{
    display: flex;
    justify-content: space-between;
    width: 600px;
}
.number_box{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 200px;
}
.p{
    font-size: 20px;
    color: #333;
    font-weight: bold;
    text-align: center;
}
label{
    font-size: 20px;
    color: #333;
    font-weight: bold;
}
label{
    display: block;
}
.reset{
    font-size: 20px;
}
h2{
    font-size: 50px;
    width: 120px;
    height: 90px;
    text-align: center;
    background-color: rgb(52, 52, 255);
    color: white;
    padding: 20px;
    box-shadow: 2px 2px 5px black;
    border-radius: 20px;
    animation: spin 2s 1  ease-in-out;
}
@keyframes spin {
    from{
        transform: scale(0);
    }
    to{
        transform: scale(1);
        transform: rotate(1080deg);
    }
}
.buttons_div{
    display: flex;
    gap: 10px;
}
.button_num{
    font-size: 30px;
    background-color: #9898ff;
    color: white;
    width: 54px;
    height: 54px;
    box-shadow: 2px 2px 5px black;
    border-radius: 10px;
    transition: .3s;
    cursor: pointer;
    border: none;
}
button{
    font-size: 30px;
    background-color: #9898ff;
    color: white;
    padding: 10px;
    box-shadow: 2px 2px 5px black;
    border-radius: 10px;
    transition: .3s;
    cursor: pointer;
    border: none;
}
button:hover{
    background-color: #1d1dff;
}
button:active{
    box-shadow: 2px 2px 5px black inset;
    transform: scale(0.95);
}
