.roulette {
    width: 1000px;
    height: 100px;
    background-color: azure;

    display: flex;
    align-items: center;
}

.jackpot {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: rgb(21, 40, 184);
}

.cell, .cell-2 {
    border: 1px solid black;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cell-2 {
    background-color: gold;
}

#win, #lose {
    display: none;
}