body {
  margin: 0;
  padding: 0;
  top: 0;
  padding-bottom: 200px;
  background-color: #FCF8EC;
}

p, h1 {
  font-family: sans-serif;
  text-align: center;
}

p {
  font-size: 18px;
}

h1 {
  font-size: 50px;
}

nav {
  width: 100%;
  top: 0;
  position: fixed;
  display: flex;
  flex-direction: row-reverse;
  background-color: #333;
  padding-right: 20px;
}

.nav-item {
  margin: 25px;
  font-size: 30px;
}

.nav-item > a {
  text-decoration: none;
  color: white !important;
}

.nav-item > .other-link:hover {
  color: #ADD8E6 !important;
}

#current-nav-item {
  text-decoration: underline;
  font-weight: bold;
}

.section {
  background-color: white;
  padding: 40px;
  margin: 120px auto;
  width: 800px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
}

.section:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

@media only screen and (max-width: 1000px){
  .section {
    width: 90%;
    margin: 200px auto;
  }
  
  h1 {
    font-size: 60px;
  }
  
  p {
    font-size: 28px;
  }
  
  li {
    font-size: 28px;
  }
  
  #inline {
    font-size: 32px !important;
  }
}

#created-by {
  margin-top: 150px !important;
}

.white {
  background-color: white;
}

#green {
  color: green;
}

#red {
  color: red;
}

#inline {
  display: inline;
  font-size: 24px;
  font-weight: bold;
}
