@import url(https://fonts.googleapis.com/css?family=Oleo+Script);
@import url(https://fonts.googleapis.com/css?family=Poiret+One);
body {
  background-color: #45b9d3;
  color: white;
  overflow: hidden;
}

.dark {
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  background: rgba(29, 25, 52, 0.9);
  z-index: 5000;
}

h1,
h2 {
  position: relative;
  text-align: center;
  font-family: 'Poiret One', 'Oleo Script', cursive;
  text-shadow: 1px 1px 1px rgba(77, 77, 77, 0.5);
  z-index: 1000;
  margin: 0;
}

h1 {
  margin-top: 4.5rem;
  font-size: 8vw;
}

h2 {
  font-size: 6vw;
  font-family: 'Oleo Script', cursive;
}

.sun {
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 3rem;
  height: 3rem;
  background-color: khaki;
  border-radius: 100%;
  -webkit-box-shadow: 0 0 20px khaki;
          box-shadow: 0 0 20px khaki;
}

.flowers {
  position: absolute;
  width: 100%;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flower {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flower_head {
  height: 7rem;
  width: 7rem;
  background: #cba8ed;
  border-radius: 100%;
}

.flower_stem {
  width: 0.5rem;
  height: 20rem;
  max-height: 0;
  background: #86af6e;
}

.flower_stem::after {
  content: '';
  margin-left: 0.5rem;
  margin-top: 1rem;
  width: 3em;
  height: 3em;
  display: block;
  background: #4d916e;
  border-radius: 2em 0 2em 0em;
}

.yellow {
  width: 7.5rem;
  height: 7.5rem;
  background: khaki;
}

.pink {
  width: 6rem;
  height: 6rem;
  background: #e2b1b1;
}

.fadein {
  opacity: 0;
  -webkit-animation: fadein 1s 2s ease-in forwards;
          animation: fadein 1s 2s ease-in forwards;
}

.slidein {
  -webkit-transform: translateX(-5rem);
          transform: translateX(-5rem);
  -webkit-animation: slidein 3s ease-out forwards;
          animation: slidein 3s ease-out forwards;
}

.fadeout {
  opacity: 1;
  -webkit-animation: fadeout 4s .25s ease forwards;
          animation: fadeout 4s .25s ease forwards;
}

.delay-1 {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.grow-12 {
  -webkit-animation: grow-12 2s 0.5s ease-in-out forwards;
          animation: grow-12 2s 0.5s ease-in-out forwards;
}

.grow-15 {
  -webkit-animation: grow-15 2s 1.5s ease-in-out forwards;
          animation: grow-15 2s 1.5s ease-in-out forwards;
}

.grow-9 {
  -webkit-animation: grow-9 2s 2.5s ease-in-out forwards;
          animation: grow-9 2s 2.5s ease-in-out forwards;
}

.pulse {
  -webkit-animation: pulse 1s 0.5s ease-in-out infinite alternate;
          animation: pulse 1s 0.5s ease-in-out infinite alternate;
}

@-webkit-keyframes fadein {
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes slidein {
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slidein {
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes fadeout {
  100% {
    opacity: 0;
  }
}

@keyframes fadeout {
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes grow-12 {
  100% {
    max-height: 14rem;
  }
}

@keyframes grow-12 {
  100% {
    max-height: 14rem;
  }
}

@-webkit-keyframes grow-15 {
  100% {
    max-height: 17rem;
  }
}

@keyframes grow-15 {
  100% {
    max-height: 17rem;
  }
}

@-webkit-keyframes grow-9 {
  100% {
    max-height: 11rem;
  }
}

@keyframes grow-9 {
  100% {
    max-height: 11rem;
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.77rem;
  }
  h2 {
    font-size: 1.77rem;
  }
}
/*# sourceMappingURL=style.css.map */