.machine {
    width: 45%; 
    /* height: 500px;  */
    height: fit-content;
    padding: 10px;
    background-color: rgb(71, 71, 71);
    padding-bottom: 20px;
    background-color: rgb(130, 29, 29);
    border-radius: 20px;
    border-style: solid;
    border-color: rgb(83, 20, 8);
    border-width: 5px;
}

.slotsholder {
    display: flex;
    flex-direction: row;
    align-content: space-evenly;
    justify-content: space-evenly;
}

.slot {
    background-color: rgb(176, 176, 176);
    width: 100px;
    height: 100px;
    margin: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-around;
    align-content: space-between;
    flex-direction: column;
}

.bigbutton {
    width: 250px;
    height: 100px;
    font-size: 70px;
    color: black;
    border-radius: 125px;
    border-style: solid;
    border-color: black;
    border-width: 5px;
    cursor: pointer;
    font-family: Vina Sans;
}

.littlebutton {
    width: 80px;
    height: 50px;
    font-size: 18px;
    color: black;
    border-radius: 15px;
    border-style: solid;
    border-color: rgb(153, 108, 13);
    border-width: 3px;
    cursor: pointer;
    font-family: Vina Sans;
    align-self: center;
    background-color: rgb(204, 169, 15);
}

.betholder {
    display: flex; 
    flex-direction: row; 
    justify-content: space-evenly; 
    align-content: center; 
    width: 45%; 
    margin: 10px;
}

.textbox {
    width: 200px;
    height: 30px;
}

#payout {
    margin-bottom: 0px;
    font-size: 50px;
}

#bettext {
    margin-top: 0px;
    font-size: 50px;
}

#custombet {
    font-size: 30px;
    margin: 0px;
}

#bet {
    width: 100px;
    margin: 0px;
    text-indent: 3px;
    border-radius: 10px;
    border-radius: 15px;
    border-style: solid;
    border-color: black;
    border-width: 3px;
    color: black;
    font-size: 15px;
    background-color: rgb(152, 152, 152);
}

input {
    width: 200px;
    margin: 0px;
    text-indent: 3px;
    border-radius: 10px;
    border-radius: 15px;
    border-style: solid;
    border-width: 3px;
    color: black;
    font-size: 15px;
    border-color: rgb(153, 108, 13);
    background-color: rgb(204, 169, 15);
    margin: 1px;
    align-self: center;
}

::placeholder {
    color: rgb(65, 65, 65);
}

#title {
    margin-top: 0px;
    font-size: 100px;
}

@media (max-width: 800px) {
    .machine {
        width: 92%;
    }

    #payout {
        font-size: 40px;
    }

    #bettext {
        font-size: 40px;
    }

    .bigbutton {
        font-size: 60px;
    }

    .betholder {
        width: 80%; 
    }

    #custombet {
        font-size: 25px;
    }

    #title {
        font-size: 45px;
    }

    #loginwithbc {
        font-size: 20px;
    }
}