body {
  font-size: 0.875em;
  font-family: monospace;
  padding: 0;
  margin: 0;
  background: linear-gradient(#2debfc, #2d61fc, #0d077d);
  background-repeat: no-repeat;
}

.sky {
  background: radial-gradient(farthest-side at 50% 200px, #ff7043 5%, #fbd491 35%, #78d8f0 80%);
  background-repeat: no-repeat;
  height: 200px;
  position: relative;
}

.sunwater {
  position: absolute;
  max-width: 80px;
  top: 150px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
}

.ocean {
  position: relative;
  height: 3500px;
}

.logo {
  position: relative;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  height: 300px;
  display: flex;
  align-items: flex-end;
}

.glitterpalm {
  position: absolute;
  z-index: 2;
  top: 25%;
}

.paradise {
  position: absolute;
  z-index: 3;
  width: 300px;
  top: 25%;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
}

.ship {
  position: absolute;
  width: 100px;
  top: -1%;
  left: 10%;
}

.sharkfin {
  position: absolute;
  width: 300px;
  top: 3%;
  left: 22%;
}

.whale {
  position: absolute;
  width: 300px;
  top: 11%;
  left: 10%;
}

.surfer {
  position: absolute;
  width: 100px;
  top: 4.5%;
  right: 28%;
  transform: rotateY(180deg);
}

.dolphinjump {
  position: absolute;
  width: 65px;
  top: 0%;
  right: 15%;
}

.orca {
  position: absolute;
  width: 200px;
  top: 15%;
  right: 10%;
}

.diver {
  position: absolute;
  width: 71px;
  top: 20%;
  left: 10%;
}

.tile {
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url(isle/tile.gif);
  height: 67px;
  width: 100%;
}

.anglerfish {
  position: absolute;
  top: 90%;
  right: 40%;
}

.bluefish {
  position: absolute;
  top: 30%;
  left: 50%;
}

.bubbles {
  position: absolute;
  top: 50%;
  left: 50%;
}

.clam {
  position: absolute;
  top: 96%;
  left: 1%;
  z-index: 1;
}

.crab {
  position: absolute;
  width: 30px;
  top: 6.5%;
  left: 52%;
}

.creature {
  position: absolute;
  top: 75%;
  left: 20%;
}

.eel {
  position: absolute;
  top: 50%;
  left: 20%;
}

.fish {
  position: absolute;
  top: 40%;
  right: 20%;
}

.flounder {
  position: absolute;
  top: 40%;
  left: 20%;
  transform: rotateY(180deg);
}

.goldfish {
  position: absolute;
  top: 35%;
  left: 50%;
}

.goldfish2 {
  position: absolute;
  top: 20%;
  left: 50%;
}

.jumpingfish {
  position: absolute;
  top: 6%;
  left: 20%;
}

.chest {
  position: absolute;
  top: 97%;
  right: 1%;
  transform: rotateY(180deg);
  z-index: 1;
  width: 130px;
  height: 102px;
  background-image: url("isle/cheststatic.png");
  background-size: cover;
}

.chest:hover {
  background-image: url("isle/chest.gif");
}

.kingdra {
  position: absolute;
  top: 70%;
  right: 30%;
}

.kraken {
  position: absolute;
  top: 98%;
  left: 19%;
  z-index: 1;
}

.mermaid {
  position: absolute;
  top: 60%;
  left: 20%;
}

.octopus {
  position: absolute;
  top: 30%;
  left: 10%;
}

.octopus2 {
  position: absolute;
  top: 45%;
  left: 50%;
}

.pearl {
  position: absolute;
  top: 97.5%;
  right: 40%;
  z-index: 1;
}

.pleco {
  position: absolute;
  top: 95%;
  right: 65%;
  z-index: 1;
}

.purplefish {
  position: absolute;
  top: 30%;
  right: 15%;
}

.ray {
  position: absolute;
  top: 79%;
  right: 20%;
}

.school {
  position: absolute;
  top: 85%;
  left: 15%;
}

.seahorse {
  position: absolute;
  top: 98%;
  right: 20%;
}

.seaturtle {
  position: absolute;
  top: 56%;
  right: 15%;
}

.seaturtle2 {
  position: absolute;
  top: 54%;
  right: 7%;
}

.shell {
  position: absolute;
  top: 94%;
  right: 63%;
}

.star {
  position: absolute;
  top: 48%;
  right: 17%;
}

.yellowfish {
  position: absolute;
  top: 85%;
  right: 5%;
}

/***** music player *****/
#musicplayer {
  background: #9561c1; /* background color of player */
  border-bottom: 2px solid #7927c0; /* border around player */
  padding: 10px;
  text-align: center;
  display: flex;
  flex-direction: row;
  gap: 10px;
  position: sticky;
  top: 0;
  z-index: 99999;
  height: 10px;
}

.now-playing {
  padding: 5px;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 10px;
}

.controls {
  display: flex;
  width: 100%;
  gap: 10px;
}

.buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}

.seeking,
.volume {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  width: 350px;
}

.material-icons {
  color: #7927c0;
  cursor: pointer;
}

input[type="range"] {
  -webkit-appearance: none; /* removes default appearance of the tracks */
  appearance: none;
  width: 100%;
  background-color: inherit;
}

input[type="range"]:focus {
  outline: none; /* removes outline around tracks when focusing */
}

input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px; /* thickness of seeking track */
  background: #7927c0; /* color of seeking track */
}

input[type="range"]::-webkit-slider-thumb {
  height: 10px; /* height of seeking square */
  width: 10px; /* width of seeking square */
  border-radius: 0; /* change to 5px if you want a circle seeker */
  background: #7927c0; /* color of seeker square */
  -webkit-appearance: none;
  margin-top: -3px; /* fixes the weird margin around the seeker square in chrome */
  cursor: pointer;
}

input[type="range"]::-moz-range-track {
  width: 100%;
  height: 4px; /* thickness of seeking track */
  background: #7927c0; /* color of seeking track */
}

input[type="range"]::-moz-range-thumb {
  height: 10px; /* height of seeking square */
  width: 10px; /* width of seeking square */
  border-radius: 0; /* change to 5px if you want a circle seeker */
  background: #7927c0; /* color of seeker square */
  border: none; /* removes weird border around seeker square in firefox */
  cursor: pointer;
}

@media only screen and (max-width: 600px) {
}
