main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
main > h2 {
  width: 100%;
  color: #ff7f7f;
  font-weight: normal;
  text-align: center;
  border-bottom: 3px solid #ff7f7f;
  font-size: 1.8em;
  line-height: 2.4em;
  margin-bottom: 0.5em;
}
main nav {
  width: 30%;
}
main nav li {
  list-style: none;
  width: 95%;
  height: 100px;
  margin-bottom: 3px;
}
main nav li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  font-size: 1em;
  text-decoration: none;
  line-height: 1.2em;
  color: #010101;
  height: 100%;
  width: 100%;
  border-top: 1px solid #e9e9e9;
  background-image: -webkit-gradient(linear, left top, right top, from(#f3f3f3), to(#ffffff));
  background-image: linear-gradient(left, #f3f3f3 0%, #ffffff 100%);
}
main nav li a span {
  width: 100%;
  text-align: center;
  font-size: 85%;
  color: #424242;
}
main nav li a:hover, main nav li a.hover {
  background-image: -webkit-gradient(linear, left top, right top, from(#d8d8d8), to(#f3f3f3));
  background-image: linear-gradient(left, #d8d8d8 0%, #f3f3f3 100%);
}
main article {
  width: 70%;
}
main article > h2 {
  font-size: 1.2em;
  line-height: 2.5em;
  font-weight: normal;
  text-align: center;
  color: #ffffff;
  background-color: #655858;
}