#p5_loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  color: rgb(240, 50, 123);
}

.dot {
  display: inline-block;
  animation: jump 0.6s ease-in-out infinite;
}

.dot:nth-child(2) { animation-delay: 0.1s; }
.dot:nth-child(3) { animation-delay: 0.2s; }

@keyframes jump {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

html, body {
  overflow-y: scroll;
}

main {
  margin-left: 200px;
  width: calc(100vw - 200px);
  font-family: 'Montserrat', sans-serif;
  color: rgb(240, 50, 123);
  position: relative;
  z-index: 1;
}

main div {
  display: none;
  margin-left: 25px;
  margin-right: 15vw;
  min-height: 20vh;
  padding: 50px;
}

textarea {
  display: block;
  width: 100%;
  max-width: 500px;
  height: 120px;
  margin-top: 12px;
  padding: 10px;
  font-family: 'Montserrat', sans-serif;
  color: rgb(240, 50, 123);
  border: 1px solid rgb(240, 50, 123);
  background: white;
  resize: vertical;
}

button {
  margin-top: 10px;
  padding: 8px 24px;
  font-family: 'Montserrat', sans-serif;
  background: rgb(240, 50, 123);
  color: white;
  border: none;
  cursor: pointer;
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
