body{
  margin: 0;
  background-color: #a3a5b2;
  font-family: Arial, Helvetica, sans-serif;
}

nav{
  background-color: #3D376B;
  height: 3.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  height: 100%;
}

nav li{
  height: 100%;
}

nav a{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 1.25rem;
  text-decoration: none;
  color: #C91F27;
}

nav a:hover{
  background-color: #A19F9C;
}

.box{
  text-align: center;
  display: block;
  width: 87%;
  margin-left: auto;
  margin-right: auto;
  padding: 1.25rem;
}

.box h1 {
  margin: 1.5rem 0;
  font-size: 2rem;
  color: #111;
}

.box h2 {
  margin-top: 2rem;
  font-size: 1.5rem;
  color: #C91F27;
}

.box ul {
  width: 32%;
  text-align: center;
  padding-left: 1.5rem;
  margin: 1rem auto;
  display: inline-block;
  text-align: left;
}

.box li {
  margin-bottom: 0.5rem;
}

.box a {
  color: #C91F27;
}

.box  a:hover {
  text-decoration: underline;
}


footer {
  background-color: #8681BD;
  color: #C91F27;
  text-align: center;
  height: 3rem;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}