

body{
    background-color: #240332;
    overflow-x: hidden;
}
.lotto{
    display: block;
    margin-left: auto;
    margin-right: auto;
}
h5{
    font-size: 60px;
    color: white;
    text-align: center;
    font-family: Verdana;
    font-weight: bold;
}
#app{
    width: 500px;
    height: 500px;
    margin: 0 auto;
    position: relative;
}
.marker{
    position: absolute;
    width: 400px;
    left: 50px;
    top: -20px;
    z-index: 2;
}
.wheel{
    width: 100%;
    height: 100%;
}
.button{
    display: block;
    width: 250px;
    margin: 100px auto;
    cursor: pointer;
    background-color: #ff9f0a;
    padding: 15px 20px;
    border-radius: 30px;
    border: 1px solid #ffc915;
    color: black;
    font-size: 20px;
    font-family: Verdana;
    font-weight: bold;
}
.button:hover{
        opacity: 0.8;
}
.button:focus{
    border: none;
}
.blur{
    animation: blur 10s;
}
.result{
    font-size: 115px;
    color: white;
    text-align: center;
    border-radius: 5px;
    line-height: normal;
}
.result1{
    margin-top: 30px;
}
h1{
    color: white;
    text-align: center;
    margin-bottom: 0;
    margin-top: 0;
    font-size: 60px;
    line-height: 40px;
    font-family: Verdana;
    font-weight: bold;
}
.h1-2{
    font-size: 50px;
}
.h1_3{
    /*font-size: ;*/
}
h2{
    font-size: 25px;
    margin-bottom: 40px;
}
h3{
    font-size: 20px;
}
p{
    color: #ff9f0a!important;
    margin-bottom: 0;
    margin-top: 0;
    font-size: 60px;
    font-weight: bold;
    font-family: Verdana;
}
.forma{
    background-color: rgba(0, 0, 0, 0.1);
    /*opacity: 10%;*/
}
input{
    border-radius: 30px!important;
    background-color: rgba(0, 0, 0, 0.1) !important;
    padding: 28px!important;
}
::placeholder{
    text-align: center;
}
button{
    border-radius: 28px!important;
    color: black;
    font-weight: bold!important;
    padding: 15px!important;
    font-family: Verdana;
}
.forma2{
    margin-top: 100px;
    margin-bottom: 100px;
}

@keyframes blur{
    0%{
        filter: blur(0.5px);
    }
    30%{
        filter: blur(1px);
    }
    50%{
        filter: blur(2px);
    }
    80%{
        filter: blur(1.5px);
    }
    95%{
        filter: blur(0px);
    }
}