* {
  box-sizing: border-box;
}

body,
html {
  margin: 0;
  font-size: 30px;
  overflow: hidden;
}

#ocean {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
}

#ocean::before {
  filter: blur(20px);
  display: block;
  content: " ";
  position: absolute;
  top: -40px;
  left: -40px;
  right: -40px;
  bottom: -40px;
  min-height: 100vh;
  min-width: 100%;
  background-image: url(/hiroko-yoshii-9y7y26C-l4Y-unsplash.1fc63bfc.jpg);
  background-size: cover;
  background-position: center;
}

#root {
  position: relative;
  display: block;
  max-height: 100vh;
  max-width: 100ch;
  height: 100vh;
  width: 100ch;
  perspective: 1000px;
  perspective-origin: center center;
}

@keyframes swim {
  0% {
    transform: rotateY(0);
  }
  25% {
    transform: rotateY(-25deg);
  }
  50% {
    transform: rotateY(0);
  }
  75% {
    transform: rotateY(25deg);
  }
  100% {
    transform: rotateY(0);
  }
}
@keyframes swim-flipped {
  0% {
    transform: rotateY(180deg);
  }
  25% {
    transform: rotateY(155deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  75% {
    transform: rotateY(205deg);
  }
  100% {
    transform: rotateY(180deg);
  }
}
.swim {
  animation: swim 1s infinite;
}
.swim::before {
  background-image: url(/bubbles.a40af5d1.gif);
  opacity: 0.5;
  display: block;
  content: " ";
  position: absolute;
  height: 3rem;
  width: 1rem;
  background-size: cover;
  overflow: hidden;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.swim.flipped {
  animation: swim-flipped 1s infinite;
}

.fish {
  position: absolute;
  display: flex;
  background-color: transparent;
  background-size: cover;
  border: none;
  border-radius: 50%;
  height: 3.3rem;
  width: 3.3rem;
  line-height: 1.1em;
  font-size: 3rem;
  transition: filter 0.1s;
}
.fish:focus {
  outline-style: dashed;
  outline-width: 5px;
  outline-offset: 0.1rem;
  outline-color: rgba(117, 223, 247, 0.18);
}
.fish span {
  user-select: none;
}

/*# sourceMappingURL=/src.3dbf2197.css.map */