html {
    height: 100%;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: #2e2e2e;
    background-image: url("../background.png");
    background-size:400px;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
}
#consoleDiv {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    border: 1px solid black;
    padding: 10px;
    height: 100vh;
    width: 100vw;
    overflow-y: scroll;
    font-family: monospace;
    z-index: 1;
    pointer-events: none;
}

@media (orientation: portrait) {
    .hide-mobile {
        display: none;
    }
    .show-mobile {
        display: flex;
    }
}

@media (orientation: landscape) {
    .hide-desktop {
        display: none;
    }
    .show-desktop {
        display: flex;
    }
}

/* Menu style */

#mainMenu {
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    color: black;
    border: 1px solid black;
    border-radius: 15px;
    padding: 20px;
    z-index: 3;
}
#introMenu {
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#title {
    font-size: 3rem;
    text-align: center;
}
#joinButtonsContainer {
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
#id-input{
    font-size: 30px;
    width: 80%;
    margin: 15px;
}
#inputErrorMessage{
    color: red;
    margin:0px;
}
#as-host-btn{
    font-size:50px;
    padding:15px;
    margin: 15px;
}
#as-player-btn{
    font-size:50px;
    padding:15px;
    margin: 15px;
}