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

body {
  padding: 50px;
  background-color: #18191C;
  color: #FFFFFF;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  text-align: center;
  overflow: hidden;
}

h1 {
  font-size: 48px;
}

.centered {
  display: flex;
  justify-content: center;
  align-items: center;
}

.button {
  display: block;
  min-width: 210px;
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 8px 15px;
  color: #000000;
  font-size: 18px;
  font-weight: 300;
  font-family: inherit;
  transition: background-color 0.2s linear;
}

.button:hover {
  background-color: #FFFFFF;
  cursor: pointer;
  transition: background-color 0.2s linear;
}

.button:focus, .button:focus-visible {
  border: 2px solid #ffffff;
  outline: none;
}

.button-yellow {
  background-color: #FFD829;
}

.button-green {
  background-color: #41E847;
}

.hidden {
  display: none;
}
