* {
  font-family: "EB Garamond", Garamond, "Times New Roman", Times, serif;
  cursor: crosshair;
  box-sizing: border-box;
}

body {
  font-size: 18px;
  font-family: "EB Garamond", Garamond, "Times New Roman", Times, serif;
  background-color: white;
  color: #444;
  display: flex;
  justify-content: center;
  margin-top: 10%;
}

h3 {
  line-height: 1.2;
  color: black;
  text-align: left;
}

li:not(:last-child) {
  margin-bottom: 5px;
}

a {
  color: rgb(38, 77, 122);
  cursor: pointer;
}

.links {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

.links a {
  white-space: nowrap;
  list-style-type: none;
  text-decoration: none;
}

.links a:not(:last-child) {
  margin-right: 2.5em;
}

@media screen and (max-width: 767px) {
  body {
    margin: 5% 10%;
  }

  .links {
    flex-direction: column;
    align-items: center;
  }

  .links a:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
