body {
    padding: 0;
    margin: 0;
    overflow: hidden;
      user-select: none;
      -webkit-user-select: none; 
      -moz-user-select: none;    
      -ms-user-select: none;    
    }
#overlays {
    display:none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 200;
}
#title {
    padding: 10px;
}
#imgpos {
    position: fixed;
    right: 10px;
    bottom: 10px;
}
.Player {
    position: fixed;
    bottom: 10px; 
    right: 1444px;  
    background-color: #333333;
    padding: 10px;
    border-radius: 8px;
    z-index: 9999;
    color:  #FFF; 
    border: 4px solid red; 
}
#canvas {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
#connecting {
    display:none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 100;
    background-color: rgba(0,0,0,0.5);
}
#nick {
    width: 65%;
    float: left;
}
#gamemode {
    width: 33%;
    float: right;
}
#helloDialog {
    width: 400px;
    background-color: #333333;
    margin: 10px auto;
    border-radius: 15px;
    padding: 5px 15px 5px 15px;
    position: absolute;
    top: 45%;
    left: 50%;
    margin-right: -50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: white; 
    border: 4px solid red; 
}

#leftOptions {
    width: 400px;
    background-color: #333333;
    margin: 10px auto;
    border-radius: 15px;
    padding: 5px 15px 5px 15px;
    position: absolute;
    top: 50%;
    left: -51%;
    margin-right: -50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: white; 
    border: 4px solid red; 
}

#rightOptions {
    width: 400px;
    background-color: #333333;
    margin: 10px auto;
    border-radius: 15px;
    padding: 5px 15px 5px 15px;
    position: absolute;
    top: 50%;
    right: -51%;
    margin-left: -50%;
    -webkit-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    color: white; 
    border: 4px solid red; 
}
#chat_textbox {
    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
    position: absolute;
    z-index: 1;
    bottom: 10px;
    background-color: #333333;
    border: 0px;
    outline: none;
    color: #FFF;
    height: 30px;
    text-indent: 12px;
    left: 10px;
    width: 300px;
    color: white; 
    border: 4px solid red; 
}
#chat_textbox:focus {
    background: rgba(0, 0, 0, .5);
}
#footer {
    text-align: center;
    margin-bottom: 10px;
    margin-top: -10px;
}
#play-btn {
    width: 100%;
    float: left;
}
#settings-btn {
    width: 13%;
    float: right;
}
#spectate-btn {
    margin-top: -5px;
}
.checkbox label {
    margin-right: 10px;
}
.mb-10 {
    margin-bottom: 10px;
}
