* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  color: #fff;
  font-size: 62.5%;
}

body {
  height: 100vh;
  background-color: #3b4156;
  font-family: "Urbanist", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

h1 {
  font-size: 3rem;
  color: #fb6087;
}
hr {
  margin-bottom: 3.2rem;
}
p,
li,
button {
  font-size: 1.7rem;
  letter-spacing: 0.1rem;
  font-family: "Urbanist", sans-serif;
  line-height: 1.6;
}
button {
  background-color: #f5ee62;
  padding: 0.6rem 2.4rem;
  border-radius: 10rem;
  margin-right: 3.6rem;
  cursor: pointer;
  transition: all 0.3s linear;

  &:hover {
    box-shadow: inset 0 0 0 0.2rem #fb6087;
    background-color: transparent;
    color: #fb6087;
  }
}

section {
  width: 32rem;
  height: 95%;
  background-color: #21232e;
  text-align: center;
  padding: 2.4rem;
  border-radius: 1rem;
  box-shadow: 0 1px 0px #343650, 0 2px 0px #343650, 0 3px 0px #343650,
    0 4px 0px #343650, 0 5px 0px #343650, 0 6px 0px #343650, 0 7px 0px #343650,
    0 8px 0px #343650, 0 9px 0px #343650, 0 10px 0px #343650;
}
p {
  color: #fb6087;
  font-size: 5.8rem;
}
.buttons {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 2.4rem;
}
button {
  background-color: #fff;
  margin: 0;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1);
}
.resetValue p {
  font-size: 1.8rem;
  margin-top: 0.6rem;
}
