body {
  background-color: black;
  text-align: center;
  font-family: "Comic Relief", system-ui;
  color: blue;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header {
  background-color: white;
  border: solid 4px;
  border-color: blue;
  border-radius: 40px;
  padding: 0 10% 2% 10%;
  font-size: 1.5em;
}

.c-header {
  background-color: white;
  border: solid 4px;
  border-color: blue;
  border-radius: 40px;
  margin: 0 0 2% 0;
  padding: 0 8% 2% 8%;
  font-size: 1.2em;
}

button {
  color: blue;
  background-color: white;
  font-family: "Comic Relief", system-ui;
  border: solid blue;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  margin: 2% 0 2% 0;
}

button:hover{
  background-color: #d8d3fe;
}

a {
  color: blue;
}

h4 {
  margin-bottom: 2%;
}