body {
  font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #444;
}

body {
  padding: 10px;
}

@media (min-width: 640px) {
  body {
    padding: 20px;
  }
}

@media (min-width: 768px) {
  body {
    width: 900px;
    margin: 0 auto;
  }
}

.banner {
  margin: 0;
  padding: 0;
  color: rgb(85, 91, 216);
  font-weight: 100;
  font-size: 7em;
}

.banner .first {
  text-transform: lowercase;
}

.banner .last {
  text-transform: uppercase;
}

@media (min-width: 640px) { 
  .wrapper {
    display: flex; 
    flex-direction: row-reverse; 
  }
}

.navigation {
  margin: 0;
  padding: 20px;
  font-size: 1.5em;
  list-style-type: none;
}

.navigation a {
  color: burlywood;
  text-decoration: none;
  text-transform: uppercase;
}

.navigation a {
  position: relative;
  display: inline-block;
  outline: none;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  font-size: 1.em;
}

.navigation a::after {
  position: absolute;
  top: 95%;
  left: 0;
  width: 0%;
  height: 2px;
  background: rgba(0,0,0,0.1);
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s, width 0.3s;
  -moz-transition: opacity 0.3s, -moz-transform 0.3s, width 0.3s;
  transition: opacity 0.3s, transform 0.3s, width 0.3s ease-in-out;
}

.navigation a:hover::after,
.navigation a:focus::after {
  opacity: 1;
  width: 100%;
}

.navigation .active a {
  font-weight: 700;
}

/* The navigation class is on the ul element, so this will target ul elements within ul.navigation */
.navigation ul {
  /* Smaller indentation */
  padding: 0 0 0 10px;
  /* Remove the bullets */
  list-style-type: none;
  /* Make the text 80% the size of that of the parent list item */
  font-size: 0.8em;
}

.content {
  padding: 20px 0 0 0;
  --webkit-flex-grow: 1;
  flex-grow: 1;
  font-size: 1.2em;
}

p {
  font-size: 1em; /* 19px */
  line-height: 1.1579em; /* 22px */
  margin: 0 0 1.1579em 0;
 
}