body {
  background-color: hsl(0, 0%, 7%);
  color: white;
  padding: 10px 10px;
  font-family: system-ui, Arial, Helvetica, sans-serif;
}

h1 {
  margin: 10px 10px;
}

p {
  margin: 15px 20px;
}

.genericButton {
  border: Solid;
  border-radius: 10px;
  border-color: hsl(0 0 12);

  font-size: 20px;
  color: white;

  background-color: hsl(0 0 10);

  padding: 5px 10px;

  transition: all 0.15s ease-in-out;

  cursor: pointer;
}

.genericButton:hover {
  transform: scale(1.02);
}

.genericButton:active {
  transform: scale(1.04);
}

.linkables:hover {
  font-size: 21px;
}

.linkables:active {
  font-size: 22px;
}

.linkables:hover {
  border-color: hsl(221 100 70);
  background-color: hsl(221 100 60);
  color: black;
}
