@import url("base.css");

body {
  background-color: var(--clr-bg-dark);
}

.button-container {
  display: flex;
  color: white;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  justify-content: center;
  gap: 2rem;
  padding: 0 2rem;
  text-align: center;
}

.button-container > h1 {
  font-size: 3rem;
}

button {
  border: none;
  outline: none;
  font-size: 1rem;
  background-color: var(--clr-accent-muted);
  border-radius: .2rem;
  font-size: 3rem;
  color: white;
  padding: 1rem 2rem;
  width: 100%;
}

