*{
    padding: 0;
    margin: 0;
}

body{
    background-color: ghostwhite;
    background-image: url('background.png');
}

#container {
  width: 100%;
  height: 100vh;
  display: grid;
  place-items: center;
}

#unity-canvas {
  image-rendering: pixelated;
  max-width: 100%;
  max-height: 100%;
}

#container-footer{
    visibility: hidden;
    grid-column: 1;
    grid-row: 2;

    display: grid;
    grid-template-columns: 1fr 48px;
}