body {
  padding: 0;
  margin: 0;
  word-wrap: break-word;
  font-family: 'Roboto Mono', Arial, Helvetica, sans-serif;
  border: 20px solid cornflowerblue;
  position: relative;
}

body:before {
  content: "";
  display: block;
  border-top: 20px solid cornflowerblue;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

body:after {
  content: "";
  display: block;
  border-top: 20px solid cornflowerblue;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
}

.container {
  max-width: 600px;
  margin: auto;
  padding: 0 1rem;
}

h3 {
  padding-bottom: 1rem;
  margin-bottom: 0;
  border-bottom: 1px solid #333;
}

#resume > ul, #education > ul {
  list-style: none;
  padding: 0;
  margin-top: 0;
}

#resume ul li:not(:last-child) article {
  padding: 1rem;
  border-bottom: 1px solid #333;
}

#resume ul li:nth-of-type(2n+1) article {
  background: #f7f7f7;
}