@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
.dice, .pause, .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

body {
  background-color: hsl(218, 23%, 16%);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  background: hsl(217, 19%, 24%);
  border-radius: 15px;
  height: 350px;
  width: 350px;
  padding: 20px;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.advice_number {
  color: hsl(150, 100%, 66%);
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 800;
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.advice_text {
  color: hsl(193, 38%, 86%);
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 800;
  font-size: 26px;
  text-align: center;
  margin-bottom: 10px;
}

.pause {
  width: 100%;
  height: auto;
}

.dice {
  height: 80px;
  width: 80px;
  border: 3px solid hsl(150, 100%, 66%);
  border-radius: 50%;
  background-color: hsl(150, 100%, 66%);
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
  padding: 0;
}
.dice:hover {
  cursor: pointer;
  box-shadow: 0 0 45px hsl(150, 90%, 66%);
}

@media screen and (min-width: 768px) {
  .container {
    height: 350px;
    width: 500px;
  }
  .advice_text {
    color: hsl(193, 38%, 86%);
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 800;
    font-size: 28px;
    text-align: center;
  }
}

/*# sourceMappingURL=styles.css.map */
