﻿#GameArea {
    border: none;
    outline: 0 solid transparent;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#HiddenWordArea {
    width: 75%;
    margin: 100px auto;
    padding: 1em;
}

#TutorialBox {
    max-width: 500px;
    min-width: 300px;
    padding-top: 0.2em;
    padding-left: 0.5em;
    padding-right: 0.5em;
    margin: auto;
    text-align: center;
}

#TutorialOkButton {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 1.5em 4em;
}

.TutorialLine {
    margin: 0.2em 2em 1em 2em;
}

.OtherPlace {
    background-color: yellow;
}

.CorrectPlace {
    background-color: greenyellow;
}

.IncorrectPlace {
    background-color: lightgray;
}

.NoStatus {
    background-color: #f6f6f6;
}

.LetterBox {
    text-align: center;
    display: flex;
    width: 4em;
    height: 4em;
    padding: 0.2em;
    margin: 0.1em;
}

.LetterInBox {
    margin: auto;
    font-size: 20pt;
}

html {
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
}

#app {
    width: 100%;
    height: 100%;
}

.mud-main-content {
    width: 100%;
    height: 100%;
}

.VirtualKey-Delete {
    background-color: darkred;
    color: white;
}

.VirtualKey-Enter {
    background-color: darkblue;
    color: white;
}

.VirtualKey {
    min-width: 25px;
}

#VirtualKeyboard {
    margin-top: auto;
    border-top: 1px solid #f6f6f6;
    padding-top: 1em;
    padding-bottom: 1em;
    bottom: 0;
    width: 100%;
    background-color: white;
    -webkit-box-shadow: 4px 2px 16px 0px rgba(0,0,0,0.59);
    -moz-box-shadow: 4px 2px 16px 0px rgba(0,0,0,0.59);
    box-shadow: 4px 2px 16px 0px rgba(0,0,0,0.59);
}