body {
    background-color: #5a5a5a;
    font-family: "Segoe UI",system-ui,Helvetica,Arial,sans-serif;
    margin: 0;
    align-items: center;
    text-align: center;
}

#banner{
    min-width: 100%;
    overflow: hidden;
    background-color: #000000;
}

#banner_button{
    display: flex;
    padding:0px;
    margin: 0px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

#banner_dice{
    margin-left: 10px;
    padding: 0px;
}

#banner-text{
    height: 32px;
    padding:10px;
    margin-right: 60px;
    display: inline;
    color:#ffffff;
}

#menu{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width:100%;
    background-color: #252525;
}
.menu_button{
    font-size: 27px;
    padding:10px;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 5px;
    margin-right: 5px;
    color: #ffffff;
    text-decoration: none;
}
.menu_button:hover{
    background-color: #494949;
}

#room_table_div{
    justify-content: center;
    align-items: center;
    display: inline-flex;
    background-color: #fff9d7;
    border: 2px solid black; /* Frame around the table */
    padding: 10px; /* Space between the table and the frame */
    border-radius: 10px;
}

#room_table{
    background-color: #ffffff;
    border-color: #000000;
    font-size: 27px;
    border-collapse: collapse;
}

.room_table_td{
    border-style: solid;
    border-width: 2px;
    padding: 5px;
}

.room_table_th{
    border-style: solid;
    border-width: 2px;
    padding-left: 5px;
    padding-right: 5px;
    background-color: #d0ffff;
}

.enter_button{
    border-width: 3px;
    border-color: #00ba06;
    border-style: solid;
    border-radius: 4px;
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #00ba06;
    color:#ffffff;
    text-decoration: none;
}

.enter_button:hover{
    border-width: 3px;
    border-color: #000000;
    border-style: solid;
}

.watch_button{
    border-width: 3px;
    border-color: #2ca3f3;
    border-style: solid;
    border-radius: 4px;
    padding: 10px;
    padding-left: 11px;
    padding-right: 11px;
    background-color: #2ca3f3;
    color:#ffffff;
    text-decoration: none;
}

.watch_button:hover{
    border-width: 3px;
    border-color: #000000;
    border-style: solid;
}

#download_client{
    border-width: 3px;
    border-color: #000000;
    border-style: solid;
    border-radius: 8px;
    padding: 15px;
    font-size: 50px;
    font-weight: bold;
    background-color: #2ca3f3;
    color:#ffffff;
    text-decoration: none;
}