* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
}

body {
  background: #202733;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  background-color: #313a48;
  padding: 1rem;
  border-radius: 10px;
  color: white;
  width: 90%;
  max-width: 540px;
  padding: 40px 24px 64px;
  text-align: center;
  position: relative;
}

.container .advice-number {
  font-weight: 800;
  font-size: 11px;
  line-height: 15px;
  text-align: center;
  letter-spacing: 3.45714px;
  color: #53ffaa;
  margin-bottom: 24px;
}

.container .advice {
  font-weight: 800;
  font-size: 24px;
  line-height: 33px;
  text-align: center;
  letter-spacing: -0.257143px;
  color: #cee3e9;
  margin-bottom: 24px;
}

.container .img-wrap > img {
  width: 100%;
}

.container .img-wrap #desktop-pattern {
  display: none;
}

.container .dice-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translate(50%, 50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #53ffaa;
}

.container .dice-wrap:hover {
  box-shadow: 0px 0px 40px #53ffaa;
}

@media screen and (min-width: 600px) {
  .container .img-wrap #desktop-pattern {
    display: inline-block;
  }
  .container .img-wrap #mobile-pattern {
    display: none;
  }

  .container {
    padding: 48px 48px 72px;
  }

  .container .advice-number {
    font-size: 13px;
  }
  .container .advice {
    font-size: 28px;
  }
}
