body {
  height: 100vh;
  background-color: #0c1f29;
}

agy-main {
  width: 100%;
}

.container {
  position: relative;
  width: 100%;
  height: 100vh;
}

.rainyDay {
  position: relative;
  width: 90vw;
  height: 90vw;
  border-radius: 50%;
  overflow: hidden;
  background-color: #3f3d3d;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
}

.app-loading {
  background: #99ce69;
}

.umbrella {
  position: absolute;
  top: 0;
  left: 0;
  background: url('/content/images/payung.png') no-repeat;
  height: 100%;
  width: 100%;
}

@media only screen and (min-width: 600px) {
  .rainyDay {
    width: 50vh;
    height: 50vh;
  }
  .umbrella {
    top: 10vh;
    left: 10vh;
  }
}

.rain {
  position: absolute;
}

.dropletOne,
.dropletTwo,
.dropletThree,
.dropletFour,
.dropletFive {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 80% 0 55% 50% / 55% 0 80% 50%;
  background-color: #edf0f5;
  top: -20px;
  left: 150px;
  transform: rotate(-45deg);
  box-shadow: -80px -100px #979dac, 80px 150px #979dac;
  animation: rain 4s linear infinite;
}

.dropletTwo {
  top: -30px;
  left: 300px;
  animation: rain 4s linear infinite 1s;
}

.dropletThree {
  top: -70px;
  left: 200px;
  animation: rain 4s linear infinite 2s;
}

.dropletFour {
  top: -70px;
  left: 150px;
  animation: rain 4s linear infinite 2.5s;
}

.dropletFive {
  top: -90px;
  left: 400px;
  animation: rain 4s linear infinite 3s;
}

@keyframes rain {
  0% {
    transform: translateY(-20px) rotate(-45deg);
  }
  100% {
    transform: translateY(500px) rotate(-45deg);
  }
}
