/* Volles Ausnutzen des innerWindow-Bereiches für das Spielfeld */

html,
body {
    width: 100%;
    height: 100%;
    margin: 0px;
}


/* Style des versteckbaren Hauptmenüs: */

#mainMenue {
    position: absolute;
    width: 20%;
    right: 0px;
    top: 30px;
    bottom: 30px;
    padding: 0px;
    border: 2px solid #505050;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    background: rgba(10, 10, 10, 0.5);
    color: white;
    text-align: center;
    font-size: 2vw;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}


/* Erscheinungsbild der <button> und <input> Elemente inklusive kleiner Animation bei einem Hover über das Element */

.inputElement {
    display: inline-block;
    padding: 0.35em 1.2em;
    border: 0.1em solid #cccccc;
    margin: 0 0.3em 0.3em 0;
    border-radius: 0.12em;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: #cccccc;
    text-align: center;
    transition: all 0.2s;
    background-color: #505050;
    width: 90%;
}

.inputElement:hover {
    color: #cccccc;
    background-color: #000000;
}

@media all and (max-width:30em) {
    .inputElement {
        display: block;
        margin: 0.4em auto;
    }
}


/* Erscheinungsbild des Textes im Menü */

.mainText {
    font-size: 1vw;
}