@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,700%7cUbuntu:400,700");

* {
  box-sizing: border-box;
  margin: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Ubuntu", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

main {
  display: flex;
}

section {
  padding: 0 25px;
  width: 75%;
  text-align: justify;
}

h1 {
  text-align: center;
  margin: 50px;
}

article {
  margin: 25px 0;
}

h3 {
  margin-left: 25px;
}

span {
  color: #807f84;
}

p {
  margin: 15px 0;
  text-indent: 25px;
  font-size: 14px;
}

ol {
  margin-left: 15px;
  font-size: 14px;
}

ol > ol {
  margin-left: -15px;
}

li {
  margin: 5px 0;
}

li::marker {
  font-weight: bold;
  color: #807f84;
}

a {
  color: black;
}

.sideNav {
  position: fixed;
  height: 100vh;
  display: flex;
  right: 0;
  align-items: center;
  justify-content: center;
  width: 25%;
}

.sideNavContent {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-left: 1px solid black;
}

.sideNavContent > a {
  font-size: 14px;
  color: #383838;
  text-decoration: none;
  margin: 5px 0;
}
