@font-face {
  font-family: LilitaOne;
  src: url(../assets/fonts/LilitaOne-Regular.ttf);
}

* {
    font-family: LilitaOne;
    white-space: nowrap;
    color: white;
}

body {
    margin: 0;
}

canvas {
    display: block;
}

button {
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    outline: none;
    background-color: #5b84a0;
    border: none;
    border-radius: 1vh;
    box-shadow: 0 0.8vh #7d9fb6;
    transform: translateY(-0.4vh);
}

button:hover {
    background-color: #4e7189
}

button:active {
    background-color: #4e7189;
    box-shadow: 0 0.4vh #7291a6;
    transform: translateY(0.4vh);
}

button:disabled {
    background-color: #949494;
    box-shadow: 0 0.8vh #b8b8b8;
}

input {
    border-radius: 1vh;
}

.menu-container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin: auto;
    width: 50%;
    height: 100%;
    font-size: 3vh;
    min-width: 50vh;
}

.menu-container > * {
    width: 100%;
    text-align: center;
}

.menu-container button, input {
    height: 5vh;
    font-size: 3vh;
}

.menu-container input {
    padding: 0 1vh 0;
}

.alert {
    position: absolute;
    padding: 1vh;
    background-color: #f44336;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
    width: 50%;
    height: 3vh;
    min-width: 50vh;
    font-size: 2.75vh;
    display: none;
    border-radius: 1vh;
}

.closebtn {
    margin-left: 1vh;
    font-weight: bold;
    float: right;
    line-height: 3vh;
    cursor: pointer;
    transition: 0.3s;
}

.closebtn:hover {
    color: black;
}