* {
  padding: 0;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}
.attribution {
  font-size: 11px;
  text-align: center;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}
.advice-container {
  height: 100vh;
  width: 100%;
  background-color: hsl(218, 23%, 16%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.advice-card {
  height: 14rem;
  width: 28rem;
  background-color: hsl(217, 19%, 24%);
  text-align: center;
  border-radius: 10px;
  padding: 30px;
  position: relative;
}
h4 {
  color: hsl(150, 100%, 66%);
  letter-spacing: 4px;
  font-weight: 400;
  font-size: 11px;
}
p {
  color: hsl(193, 38%, 86%);
  font-size: 27px;
  padding-top: 1.5rem;
}
.pattern-divider {
  padding-top: 2rem;
}
.icon-dice {
  position: absolute;
  bottom: -25px; 
  left: 50%;
  transform: translateX(-50%);
  background-color: hsl(150, 100%, 66%);
  padding: 15px 15px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.icon-dice:hover {
  box-shadow: 0 0 15px rgba(0, 255, 128, 0.5);
}
.icon-dice:active {
  transform: scale(0.95);
  box-shadow: 0 0 20px rgba(0, 255, 128, 0.8);
}
@media (max-width: 768px) {
  .advice-card {
    height: 16rem;
    width: 18.6rem;
  }
  .pattern-divider {
    padding-top: 2rem;
    width: 100%;
  }
}
