body{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: fixed;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: black;
}
.container{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 50%;
    width: 50%;
    background-color: rgb(70, 69, 69);
    border-radius: 10px;
}
.container>#slots{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50%;
    width: 100%;
    padding: 1%;
}
.container>#slots>.slot{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90%;
    width: 99%;
    font-size: 500%;
    margin: 1%;
    background-color: rgb(156, 154, 154);
}
.container>.controls{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50%;
    width: 100%;
    background-color: rgb(58, 51, 51);
}
#roll{
    background-color: rgb(4, 66, 7);
    height: 12%;
    width: 30%;
    border-radius: 10px;
}