body {
  margin: 0;
  font-family: "Source Sans Pro", sans-serif;
}

.header {
  padding: 0 45px;
  background-color: #283593;
    color: #FFF;
    display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav a {
  color: #FFF;
    text-decoration: none;
  display: block;
  transition: all 0.3s ease-out;
}

.nav a:hover {
  color: #c5cae9;
    transform: rotate(6deg);
}

.nav {
  margin: 0;
  padding: 0;
  display: flex;
}

.nav li {
  margin-left: 20px;
}

.hero {
  background-color: #c5cae9;
    padding: 60px 45px;
  display: flex;
}

.hero-inner {
  max-width: 760px;
}


.features {
  background-color: #e8eaf6;
    padding: 60px 45px;
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}



.footer {
  text-align: center;
  padding: 20px 0;
  color: #999;
    font-size: .9rem;
}