body {
  margin: 0;
}

.container-wrapper {
  position: relative;
}

.stat-wrapper {
  position: absolute;
  top: 20%;
  width: 100%;
}

.forecast-bubble {
  background-color: rgb(255 255 255 / 60%);
  border-radius: 10px;
}

.forecast-icon {
  position: absolute;
}

.wind-icon {
  position: absolute;
}

.stat-container {
  border-left: 4px solid #ecc075;
  padding-bottom: 5px;
  padding-top: 5px;
  padding-left: 10px;
}

.parkrun-logo {
  color: white;
  width: 150px;
  display: inline-block;
  top: -15px;
  position: relative;
}

.last-updated {
  display: none;
}

.display-subheading {
  font-size: calc(0.8rem + 1vw);
  font-weight: 300;
  line-height: 0;
}

.beach-scene div {
  position: fixed;
}

.sky {
  height: 20%;
  width: 100%;
  background: linear-gradient(to bottom, #037ccb 0%, #82ccef 100%);
}

.sea {
  height: 40%;
  width: 200%;
  left: -50%;
  top: 20%;
  border-radius: 0 0 50% 50%;
  background: linear-gradient(to bottom, rgba(8, 122, 193, 1) 0%, rgba(18, 156, 192, 1) 25%, rgba(42, 212, 229, 1) 50%, rgba(150, 233, 239, 1) 75%, rgba(222, 236, 211, 1) 100%);
  animation: waveanim ease-in-out 10s;
  animation-iteration-count: infinite;
  transform-origin: 50% 0%;
  overflow: hidden;
}

.seafoam {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, transparent 90%, white 100%);
  animation: seafoamanim ease-in-out 10s;
  animation-iteration-count: infinite;
}

.sand {
  height: 45%;
  width: 100%;
  background: #ffd189;
  top: 45%;
}

.sand-front {
  height: 30%;
  width: 100%;
  background: #ffd189;
  top: 70%;
}

.wet-sand {
  height: 47.5%;
  width: 200%;
  left: -50%;
  top: 20%;
  border-radius: 0 0 50% 50%;
  background: #ec9925;
  box-shadow: 0 10px 10px 0 #ec9925;
  animation: wetsandanim ease-in-out 10s;
  animation-iteration-count: infinite;
}

.palm-tree,
.leaves {
  width: 100%;
  height: 100%;
}

.trunk {
  width: 70%;
  height: 200%;
  left: 25%;
  top: -10%;
  border-radius: 50%;
  border-bottom: 100px solid transparent;
  border-right: 100px solid #aa8366;
}

.leaves-1 {
  width: 50%;
  height: 70%;
  left: 50%;
  top: -25%;
  transform: rotate(-20deg);
  border-radius: 50%;
  border-top: 200px solid #394d00;
}

.leaves-2 {
  width: 50%;
  height: 90%;
  left: 40%;
  top: -30%;
  transform: rotate(10deg);
  border-radius: 50%;
  border-top: 200px solid #5c7301;
}

.leaves-3 {
  width: 50%;
  height: 90%;
  left: 65%;
  top: -30%;
  transform: rotate(-15deg);
  border-radius: 50%;
  border-top: 200px solid #465a05;
}

@keyframes waveanim {
  0% {
    transform: scaleY(1.00);
  }

  35% {
    transform: scaleY(1.3);
  }

  69% {
    transform: scaleY(1.00);
  }

  100% {
    transform: scaleY(1.00);
  }
}

@keyframes wetsandanim {
  0% {
    opacity: 0.2;
  }

  34% {
    opacity: 0.2;
  }

  35% {
    opacity: 0.7;
  }

  100% {
    opacity: 0.2;
  }
}


@keyframes seafoamanim {
  0% {
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}