.WEATHER {
  background-color: white;
  width: fit-content;
  border-radius: 16px;
  border: solid 2px black;
  margin-top: 8px;
}

.WEATHER h2 {
  margin: 14px;
}

.MOGGLE input {
  border-radius: 16px;
  width: 50vw;
  aspect-ratio: 20;
  text-align: center;
  border: solid 2px black;
}

.MOGGLE {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -100%);
  font-family: 'Courier New', Courier, monospace;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.MOGGLE h1 {
  font-size: 4rem;
}

.MOGGLE .T {
  color: rgb(51, 140, 255);
}

.MOGGLE .U {
  color: rgb(255, 63, 63);
}

.MOGGLE .R {
  color: rgb(255, 201, 51);
}

.MOGGLE .L {
  color: rgb(85, 238, 123);
}

.MOGGLE .E {
  color: rgb(255, 63, 63);
}

canvas {
  z-index: -67;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}