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;
}

#create_form_div{
    justify-content: center;
    align-items: center;
    display: inline-block;
    background-color: #fff9d7;
    border: 2px solid black; /* Frame around the table */
    padding: 10px; /* Space between the table and the frame */
    margin-bottom: 60px;
    border-radius: 10px;
    min-width: 500px;
}

#create_form{
    font-size: 24px;
    margin:10px;
}

.form_input{
    font-size: 24px;
    margin:5px;
    padding: 2px;
    width: 250px;
    border-width: 4px;
    border-radius: 4px;
    background-color: #ffffff;
    text-align: center;
}

.form_input_username{
    font-size: 24px;
    margin:5px;
    padding: 2px;
    width: 350px;
    border-width: 4px;
    border-radius: 4px;
    background-color: #ffffff;
    text-align: center;
}

#submit_button{
    font-size:27px;
    font-weight: bold;
    border-radius: 4px;
    padding: 20px;
    padding-left: 40px;
    padding-right: 40px;
    background-color: #00ba06;
    color:#ffffff;
    text-decoration: none;
    border-style: none;
}

#submit_button:hover{
    background-color: #45a049;
    cursor: pointer;
}