.machine {
    background-color: #ffb006;
    border: 3px groove #e94560;
    border-radius: 20px;
    padding: 40px;
    display: inline-block;
    
    /* CRUCIAL if you wanna put a machine inside of the DIV! */
    max-width: 100%;           /* Can't be widther than a parent which is right-box!!!!! IT'S THE MOST IMPORTANT!!! */
    box-sizing: border-box;    /* Padding is not increase the width */
}

.slots {
    display: flex;
    gap: 25px;
    margin: 20px 0;
    justify-content: center;
}

.slot {
    width: 100px;
    height: 100px;
    background: wheat;
    border-radius: 20px;
    border: 5px groove greenyellow;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#button-spin {
    background: #e94560;
    color: antiquewhite;
    border: 1px groove black;
    padding: 15px 50px;
    border-radius: 60px;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    width: 100%; /* Button for full width of a machine!!! ITS ALSO IMPORTANT!!! */
}

#current-status {
    font-weight: bold;
    color: #0151ff;
    font-size: 20px;
}

#messege {
    margin-top: 20px;
    font-size: 24px;
    min-height: 35px;
    font-weight: bold;
}