@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;800&display=swap");
body {
  background-color: #17262f;
  background-image: url("../images/bg.jpg");
  font-family: 'Poppins', sans-serif;
  -webkit-transition: 2s ease-in-out;
  transition: 2s ease-in-out;
  background-blend-mode: overlay;
  background-size: cover;
}

body .adviceContainer {
  width: 30rem;
  height: 15rem;
  background: #e5e5e5;
  border-radius: 50px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-box-shadow: 0px 4px 200px 10px rgba(187, 212, 218, 0.5), 8px 11px 18px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 200px 10px rgba(187, 212, 218, 0.5), 8px 11px 18px rgba(0, 0, 0, 0.25);
  -webkit-animation: fromTop 2s;
          animation: fromTop 2s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

body .adviceContainer #adviceQuote {
  padding: 1em;
  font-size: 1.1rem;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body .adviceContainer #adviceId {
  color: #5E9EC1;
  font-weight: 600;
  font-size: 1.5rem;
}

body .randomBtn {
  width: 3rem;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  -webkit-animation: fromTop 2s;
          animation: fromTop 2s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

body .randomBtn:hover {
  cursor: pointer;
  -webkit-filter: drop-shadow(0px 4px 40px black);
          filter: drop-shadow(0px 4px 40px black);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  width: 3.3rem;
}

body .attribution {
  color: #ffffff;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  opacity: 30%;
}

body .attribution:hover {
  opacity: 80%;
  cursor: pointer;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

body .attribution a {
  color: #ffffff;
}

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

@keyframes load {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fromTop {
  0% {
    position: absolute;
    top: -50%;
    left: 50%;
  }
}

@keyframes fromTop {
  0% {
    position: absolute;
    top: -50%;
    left: 50%;
  }
}

@media only screen and (min-width: 320px) and (max-width: 900px) {
  body {
    background-color: #0f181e;
    background-image: url("../images/pattern-bg-mobile.svg");
    background-blend-mode: normal;
    font-size: 1em;
  }
  body .adviceContainer {
    max-width: 95%;
  }
  body #adviceQuote {
    margin: 0;
  }
}
/*# sourceMappingURL=styles.css.map */