Newer
Older
TADOKOROc1231429 / slot.css
body
{
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffff33;
    
}

.slot-machine
{
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.reel-container
{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reel
{
    width: 100px;
    height: 100px;
    background-color: #fff;
    border: 2px solid #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 48px;
}

button
{
    font-size: 18px;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 50%;
    background-color:#ff1a40;
}
#startButton
{
 font-size: 30px;
    padding: 20px 30px;
    margin-top: 10px;
    border-radius: 50%;
    background-color:#e67373;
}

h1
{
background-color: #ffa299;
 padding: 10px 90px;
}