html, body {
    height: 100%;
    margin: 0;
    background-color: #334;
    font-family: 'McLaren', cursive !important;
}

.interface-button {
    min-width: 180px;
    opacity: 0.8;    
}

#game_status_overlay {
    width: 100%;
    margin-top: 0.5rem;
    pointer-events: none;
}


#surface {
    width: 100%;
    height: 100%;
    display: block;
    z-index: 900;
}

#overlay {
    left: 0;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1000;
    /*display: flex;
    align-items: center;
    justify-content: center;*/
    pointer-events: none;
}

#help_tip_overlay {
    position: absolute;
    bottom: 4px;
    width: 100%;
    text-align: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity ease-in 1.5s;
    color: #f7a105;
}

#help_tip_overlay.show {
    opacity: 1;
}

.interface-box {
    color: #fff;
    border-radius: 25px;
    border: 3px double rgba(255, 255, 255, 0.8);
    background-color: rgba(150, 150, 255, 0.2);
    padding: 1.25rem;
    pointer-events: auto;
    user-select: none;
}

#logo {
    position: absolute;
    margin-left: -330.5px;
    margin-top: -135px;
    width: 661px;
    height: 110px;
}

#join_box {
}

#local_player_name {
    font-weight: bold;
}

