body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: Arial, sans-serif;
    background-color: #fff; /* Set the site background to white */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    background-blend-mode: multiply;
    opacity: 1; /* Slight opacity to blend with the white background */
}

* {
  margin: 0;
  padding: 0;
  color: black;
}

canvas#canvas {
  display: block;
  background: #FFF;
}

ul#navigation {
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  text-align: center;
  margin-right: 1.6rem;
  font-size: 0.8rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

ul#navigation > li {
  display: inline-block;
}