html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}


body {
  margin: 0;
  padding-top: 120px;
  background-color: #efefef;
  font-family: 'Abel', sans-serif;
}

h1 {
  text-align: center;
}

a {
  text-decoration: none;
  color: #323282;
}

h1 > a {
  color: #323232;
  text-decoration: none;
}

.content {
  margin: 0 30%;
}

.navigation {
  background: #323232;
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  border-top: 4px solid #0595ab;
}

.nav-item {
  transition: all 240ms ease;
  padding: 32px;
}

.nav-item:hover {
  cursor: pointer;
}

.nav-item > a {
  transition: all 240ms ease;
  color: #cca;
  text-decoration: none;
}


.nav-item:hover > a {
  transition: all 240ms ease;
  color: #ffa;
  text-decoration: none;
}
