body{
    background:#0f0f0f;
    font-family:Arial;
    text-align:center;
    color:white;
}

h1{
    color:#f5c542;
}

.slot{
    display:flex;
    justify-content:center;
    gap:15px;
    margin:40px;
}

.reel{
    width:80px;
    height:80px;
    font-size:50px;
    background:#1c1c1c;
    border:3px solid #f5c542;
    display:flex;
    align-items:center;
    justify-content:center;
}

button{
    background:#f5c542;
    border:none;
    padding:15px 40px;
    font-size:20px;
    cursor:pointer;
    border-radius:5px;
}

button:hover{
    background:#ffd95c;
}

.info{
    margin-top:20px;
    font-size:20px;
}

.footer{
    margin-top:40px;
    opacity:0.7;
}
