*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background-color: #1D2B54;
}

html, body {
    width:  100%;
    height: 100%;
    margin: 0;
    color: white;
    font-size: 1px;
  }
  
#canvas {
    /* align canvas in center of screen */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-width: 100%;
    max-height: 100%;
    image-rendering: pixelated;
    -webkit-font-smoothing: none;
}

.images {
    display: none;
}