body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: x-large;
    background-color: rgb(241, 225, 225);
    margin: 0px;
    overflow: hidden;
}

#center {
    position: absolute;
    margin: 0px;
    width: 100vw;
    height: 100vh;
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, 0fr);
    align-items: center;
    justify-content: center;
    user-select: none;
}

div {
    border: 0px solid black;
}

#bet {
    font-family: Arial, Helvetica, sans-serif;
    font-size: max(0px, min(2.5vw, 132px));
    width: 7.5vw;
}

#slotmachine {
    width: max(0px, min(60vw, 1440px));
    max-width: 60vw;
    position: absolute;
    pointer-events: none;
}


#button {
    height: 3.20vw;
    width: 3.20vw;
}

#money {
    display: flex;
    right: 2vw;
    padding-top: 10px;
    align-items: center;
    position: relative;
    justify-content: center;
}

#slot {
    width: 60vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#texty {
    color: #ff7474;
    font-family: Arial, Helvetica, sans-serif;
    font-size: max(0px, min(5.5vw, 132px));
    /* font-size: 12.5vw; */
    width: 37.457vw;
    position: absolute;
    top: calc(50% - 1em);
    display: grid;
    gap: 7.4vw;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    text-align: center;
    z-index: 1; /* Ensure the text is on top of the slot machine image */
}

.slots {
    line-height: 1;
    font-size: 1em;
}
