* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: calc(100vh - 20rem);
  display: grid;
  place-content: center;
}

.container {
  text-align: center;
}

h1 {
  margin-bottom: 1.125rem;
}

ul {
  list-style: none;
}

.container ul li {
  margin-bottom: 0.625rem;
}

a {
  text-decoration: none;
  color: blue;
  font-size: 1.125rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  margin-bottom: 1rem;
  transition: all 0.4s ease-in-out;
}

a:hover {
  color: brown;
}
