body {
    margin: 0;
    font-family: arial, sans-serif;
}

.title {
    position: absolute;
    left: 50%;
    top: 30%;
    z-index: 100;
}

.title>* {
    position: relative;
    left: -50%;
}

h1 {
    font-size: 4rem;
    cursor: default;
    color: #6c757d;
}

.game-area {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: url(favicon.ico);
    background-repeat: no-repeat;
    background-position: center 0%;
    background-size: 30%;
    image-rendering: pixelated;
}

.game-area>* {
    position: absolute;
}

.game-area .tile {
    background-color: turquoise;
    border: 1px solid turquoise;
}

.templates {
    display: none;
}

.player {
    box-sizing: border-box;
    z-index: 101;
}

.player>div {
    display: flex;
    width: 100%;
}

.player>div {
    display: flex;
    justify-content: space-between;
}

.player>div>* {
    margin: auto;
}

.player .player-body {
    background-color: #0d6efd;
    border-radius: 3px;
    /* padding: 0.5rem; */
}

.player a {
    color: white;
    text-decoration: none;
    margin: 0.5rem;
}