@font-face {
    font-family: 'stellarFont';
    src: url('../assets/fonts/pixellari/Pixellari.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background: #fffefe;
    font-family: 'stellarFont', Arial, sans-serif;
}

canvas {
    font-family: 'stellarFont', Arial, sans-serif;
}

#container {
    display: flex;
    width: 100vw;
    height: 100vh;
    align-items: stretch;
}

.lateral {
    flex: 100vh;
    flex: 100vw;
    height: 100vh;
    display: flex;
    align-items: stretch;
    justify-content: center;
    background: #ffffff;
    overflow: hidden;
}

.lateral img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

#game-area {
    flex: 1 1 70vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    position: relative;
}
