/* Basis instellingen, fonts, body, box-sizing, etc. */
html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: #000;
  /* of een andere gewenste achtergrondkleur */
}

a {
  color: #d3d3d3;
  text-decoration: underline;
}

.button {
  background: none;
  color: #d3d3d3;
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: normal;
  text-decoration: none;
  padding: 0.05em 0.4em;
  border: 1px solid #9c9c9c;
  border-radius: 20px;
  display: inline-block;
}

.button:hover,
.button:focus-visible {
  color: #fff;
  border-color: #ccc;
  outline: none;
}