* {
    padding: 0;
    margin: 0;
}

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

.container-canvas {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    background-image: url(./images/unknown.png);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-canvas #unity-canvas {
    width: 420px;
    height: 720px;
    background: #231F20;
}

@media(max-width: 576px) {
    .container-canvas #unity-canvas {
        width: 320px;
        height: 569px;
    }
}