/* Global */
body {
  font-family: 'Raleway', sans-serif;
  background:#f5f5f5;
  color:#333;
}
.wrapper {
  width: 1200px;
  margin:0 auto 100px;
}
img {
  max-width:100%;
}
/* Navigation */
.main-nav {
  position: fixed;
  width: 100%;
  bottom: 0;
}
.main-nav a {
  width: 20%;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  padding: 20px 0;
  color:white;
  font-weight: 700;
  transition:.2s all ease-in-out;
}
.main-nav a:nth-of-type(1) {
  background:#e82231;
}
.main-nav a:nth-of-type(2) {
  background:#e61089;
}
.main-nav a:nth-of-type(3) {
  background:#f5a21e;
}
.main-nav a:nth-of-type(4) {
  background:#89c241;
}
.main-nav a:nth-of-type(5) {
  background:#09a8bb;
}
.main-nav a:hover {
  padding:40px 0 20px;
  box-shadow:0 0 200px rgba(0,0,0,0.3) inset;
}
/* Header */
header {
  padding: 80px 0;
  text-align: center;
}

/* Main */
main > img {
  border-top:10px solid #08a7ba;
  display: block;
}
section {
  background:#fff;
  padding:25px 150px 50px;
}
section h1 {
  font-size: 40px;
  text-align: center;
}
section img {
  float: right;
  margin:0 0 20px 20px;
}
section p {
  line-height: 30px;
}
section h2 {
  font-size: 20px;
}