.buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

body {
  transition: linear 2s;
}

a, button {
  all: unset;
  padding: 0;
  margin: 0;
  border: 3px solid white;
  border-radius: 10px;
  display: block;
  text-align: center;
  width: 5em;
  margin: 0.5em;
  padding: 10px;
  cursor: pointer;
  font-family: sans-serif;
  color: white;
}

a:hover, button:hover {
  background: white;
  transition: 0.25s all;
  color: gray;
}

button:disabled {
  cursor: not-allowed;
}

#quote-box {
  display: flex;
  flex-direction: column;
  height: 97vh;
}

#text {
  font-size: 2em;
  margin: 0.5em;
  padding: 0.5em;
  font-style: italic;
  text-shadow: 1px 1px 2px #555;
  color: white;
}

#author {
  text-align: right;
  font-size: 1.5em;
  margin: 0.75em;
  padding: 0.75em;
  font-style: italic;
  text-shadow: 1px 1px 2px #555;
  color: white;
}

#empty-space {
  flex-grow: 1;
}