/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

.page {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  padding: 48px 24px 40px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
}

body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow-x: hidden;
  overflow: hidden;
  background: repeating-linear-gradient(180deg, #009fff 0%, #33bb88 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

#wave-canvas {
  position: fixed;
  /* stick to viewport */
  inset: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.18;
  z-index: 1;
  pointer-events: none;
  /* allow clicks through canvas */
}

.maintitleimage {
  position: relative;
  width: 560px;
  max-width: 90vw;
  height: auto;
  display: block;
  margin: 24px auto;
  z-index: 3;
}

.navigatebar {
  display: flex;
  justify-content: center;
  grid-template-columns: repeat(3, 120px);
  align-items: center;
  gap: 25px;
  padding: 0;
  margin: 0 0 0 0;
}