.main-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 200px;
    position: relative;
}

h2{
    font-size: 3rem;
    font-weight: bold;
}

.game-container{
    width: 800px;
    height: 500px;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: rgb(129, 235, 129);
    padding: 10px 40px;
    border-radius: 20px;
}

.horse-track-container{
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    position: relative;
}

.horse-track{
    width: 100%;
    height: 16px;
    background-color: white;
    border-radius: 10px;
    border: solid 2px gray;
    position: relative;
    overflow: hidden;
}
.horse-track-indicator{
    height: 100%;
    width: 100%;
    position: absolute;
    right: 100%;
}

.horse{
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    border-width: 2px;
    border-style: solid;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    right: 100%;
    transform: translateX(50%);
}


.spin-button{
    position: relative;
    border-radius: 10px;
    font-weight: bold;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: auto 2px;
    cursor: pointer;
}
.spin-button-enabled{
    background-color: #4CAF50;
}
.spin-button-disabled{
    background-color: #ccc;
    cursor: not-allowed;
}



