body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #dbb856;
    margin: 0;
    padding: 20px;
}

h1 {
    margin-bottom: 20px;
}

.slot-machine {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.reel {
    width: 200px;
    height: 150px;
    margin: 0 10px;
    border: 1px solid #dadada;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reel img {
    width: 200px;
    height: 150px;
}

.controls {
    margin-bottom: 20px;
}

button.buttons{
    padding: 20px 50px;
    margin: 5px;
    margin-top: -100px;
    font-size: 16px;
    cursor: pointer;
    background-color: #6051e3;
    color: white;
    border: none;
    border-radius: 5px;
}

button {
    padding: 20px 30px;
    margin: 40px;
    margin-top: 0px;
    margin-bottom: 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #34ce58;
    color: white;
    border: none;
    border-radius: 5px;
}

button:hover {
    background-color: #1ea13a;
}

#result {
    margin-top: 20px;
    font-size: 24px;
    color: #333;
}

input[type="range"] {
    width: 200px;
    margin-top: 10px;
}
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
 