#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(0, 0, 0);
}

.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 {
  margin: 0;
  padding: 0;
}
canvas {
  display: block;
}
