@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@700&display=swap");

html,
body {
  overflow: hidden;
  font-family: "Open Sans", sans-serif;
}

body {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #84b683;
}

canvas {
  z-index: -1;
  position: absolute;
  outline: none;
  pointer-events: none;
  border: none;
  margin-right: 570px;
  width: calc(100% + 570px) !important;
  height: 100vh !important;
}

.text {
  color: white;
  text-transform: uppercase;
  margin-left: 570px;
  font-size: 70pt;
  font-weight: 700;
  margin-bottom: 90px;
  line-height: 1.3;
}

.hidden {
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.visible {
  opacity: 1;
}
