body {
  background-color: #330033;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.waves {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  height: 20px;
  background-size: 40px 40px;
  background-image: radial-gradient(
    circle at 20px -5px,
    transparent 22px,
    #2d90af 18px
  );
  animation: waves 10s infinite forwards linear;
  background-repeat: repeat;
}
@keyframes waves {
  100% {
    transform: translatex(200px);
  }
}
.waves::before {
  content: "";
  position: absolute;
  background-color: #2d90af;
  height: 30px;
  width: 100vw;
  bottom: -30px;
}

.sand {
  background-color: #efbd4a;
  height: 58px;
  width: 250px;
  position: absolute;
  bottom: 0;
  border-radius: 0% 100% 0% 0%;
}
.sand .tree {
  height: 500px;
  width: 500px;
  position: absolute;
  border: 5px solid transparent;
  border-right: 50px solid #b8461f;
  bottom: -80px;
  border-radius: 50%;
  transform: rotate(50deg);
  left: -360px;
  z-index: -1;
}
.sand .tree div:nth-child(1) {
  height: 120px;
  width: 150px;
  position: absolute;
  right: 75px;
  border-radius: 50%;
  border-top: 40px solid #736d31;
  transform: rotate(-60deg);
}
.sand .tree div:nth-child(2) {
  height: 100px;
  width: 130px;
  position: absolute;
  border-top: 40px solid #736d31;
  right: 10px;
  top: -90px;
  transform: rotate(-65deg);
  border-radius: 50%;
}
.sand .tree div:nth-child(3) {
  height: 100px;
  width: 120px;
  position: absolute;
  border-top: 40px solid #736d31;
  right: 50px;
  border-radius: 50%;
  transform: rotate(-70deg);
}
.sand .tree div:nth-child(4) {
  background-color: #736d31;
  height: 60px;
  width: 120px;
  position: absolute;
  right: 15px;
  top: -30px;
  border-radius: 120px 120px 0px 0px;
  transform: rotate(10deg);
}
.sand .tree div:nth-child(5) {
  background-color: #736d31;
  height: 45px;
  width: 90px;
  position: absolute;
  top: 40px;
  right: 71px;
  transform: rotate(-110deg);
  border-radius: 120px 120px 0px 0px;
}
.sand .tree div:nth-child(6) {
  height: 120px;
  width: 150px;
  position: absolute;
  border-top: 50px solid #736d31;
  top: -40px;
  right: 110px;
  border-radius: 50%;
}

.sun {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: orange;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 320px;
  z-index: -2;
  animation: sunset 8s linear forwards;
}
@keyframes sunset {
  100% {
    transform: translateY(580px);
  }
}

#container {
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

#logo {
  position: absolute;
  margin: auto;
  display: block;
  width: 50%;
  animation: fadeInAnimation ease 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

#background {
  position: absolute;
}

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

  100% {
    opacity: 1;
  }
}
