body {
  background: lightgray;
  margin-left: 2%;
  margin-right: 2%;
  font-family: Roboto, Arial, sans-serif;
}

/* NAVIGATION BAR starts here */
nav {
  display: flex;
  background-color: #064420;
  width: 100%;
  justify-content: space-between;
  border-radius: 5px;
  z-index: 2; /* Ensures the header stays on top */
}

.nav-bar {
  font-size: 1.1rem;
  font-weight: regular;
}

.logo {
  display: inline-block;
  color: #daa520;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: regular;
  padding: 10px;
}

/* END of NAVIGATION BAR */

/* Main Content starts here */

h1 {
  font-weight: bold;
  font-size: 1.5rem;
  color: black;
  text-align: center;
}

a {
  text-decoration: none;
  color: rgb(70, 70, 70);
}

h2 {
  font-weight: bold;
  font-size: 1.5rem;
  color: black;
  text-align: left;
}

p,
li {
  font-weight: normal;
  font-size: 1.5rem;
  color: black;
  text-align: left;
}

ul {
  margin-left: 50px;
}

/* 
Max width before this PARTICULAR table gets nasty
This query will take effect for any screen smaller than 760px
and also iPads specifically.
*/
@media (width: 380px) {
  .logo {
    color: blue;
  }
}
