html {
  font-size: 62.5%;
  font-family: "Poppins", sans-serif;
}
* {
  box-sizing: border-box;
}
body {
  width: 100%;
  height: 100vh;
  background-color: #1a1c28;
  transition: background-color 0.2s linear;
}
.button-random {
  color: white;
  margin: 2rem auto;
  padding: 1.5rem 3rem;
  text-align: center;
  display: block;
  text-transform: uppercase;
  font-family: inherit;
  background-color: #ff7870;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  outline: none;
}
