* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif, Arial, sans-serif;
}

body .container {
  width: 800px;
  margin: 1px auto;
  border: 99px dotted #f1f1f1;
}

body .container header {
  margin: 50px 25px;
  text-align: center;
}

body .container nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 50px 0 25px 0;
}

body .container nav a, body .container nav a:visited, body .container nav a:active {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: block;
  text-align: center;
  color: #0817f1;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 3px solid #c6d3e7;
}

body .container nav a:hover, body .container nav a:visited:hover, body .container nav a:active:hover {
  border-bottom: 3px solid black;
}

body .container section {
  font-size: 1.2em;
  line-height: 1.3em;
  text-align: justify;
  padding: 30px;
}

body .container footer {
  text-align: right;
  color: lightgray;
  font-size: 0.8em;
  margin: 30px;
}
/*# sourceMappingURL=style.css.map */