* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
    display: flex;
    width: 100%;
    height: 100vh;
    padding: 436px 168px;
    justify-content: center;
    align-items: center;
    background: var(--Dark-Blue, #202733);

}

.container {
  border-radius: 10px;
  padding: 30px;
  background-color: #323a49;
  position: relative;
  max-width: 500px;
  width: 100%;
  height: 320 px;
  text-align: center;
}

.advice-number {
  color: #53ffaa;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.advice-text {
  color: #cee3e9;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.divider span {
  flex: 1;
  height: 1px;
  background-color: #4f5d74;
  margin: 0 10px;
}

.pause-icon {
  color: #cee3e9;
  font-size: 1.5rem;
}

.dice {
  background-color: #53ffaa;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  box-shadow: 0 0 10px #53ffaa;
}
.dice:hover {
    background-color: #82ffcc;
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 0 15px #82ffcc;
    transition: all 0.2s ease;
  }
  