* > *,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 28px;
  font-weight: 800;
  font-family: "Manrope", serif;
}

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

.app-wrapper {
  width: 500px;
  max-width: 90%;
  padding: 25px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-radius: 10px;
  background-color: hsl(217, 19%, 24%);
  position: relative;
}

.counter {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  color: hsl(150, 100%, 66%);
  letter-spacing: 2px;
}
.counter .number {
  font-size: inherit;
  font-weight: inherit;
}

.advice {
  max-width: 100%;
  text-align: center;
  hyphens: auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
  color: hsl(193, 38%, 86%);
}

.divider {
  max-width: 100%;
  margin-block: 0.6rem;
}

.btn {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
  background-color: hsl(150, 100%, 66%);
  cursor: pointer;
}
.btn:hover {
  box-shadow: 1px 1px 30px hsl(150, 100%, 66%);
  filter: brightness(1.2);
}

.status-message {
  width: 100%;
  text-align: center;
  position: absolute;
  top: calc(100% + 100px);
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(to right, green, lightgreen, green, lightgreen, green);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}/*# sourceMappingURL=style.css.map */