.NOM, body, html {
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
  height: 100%;
  font-family: monospace;
  font-size: 20px;
  font-weight: bold;
}

body {
  background-color: black;
  color: white;
}

h1 {
  color: white;
}

a:any-link {
  color: #c8c8c8;
}

.fullscreen {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.center {
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.horizontal-center, .center {
  position: relative;
  width: fit-content;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.vertical-center, .center {
  position: relative;
  height: 100%;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

canvas {
  background-color: black;
  position: relative;
  z-index: -5;
}

footer {
  position: absolute;
  text-align: center;
  font-size: 16px;
  margin-bottom: 4px;
  bottom: 0;
  left: 0;
  right: 0;
}

.col{
    display: flex;
    flex-direction: column;
}