body {
  font-family: Georgia, 'Times New Roman', Times, serif;
  color: rgb(100, 100, 100);
  font-size: 10;
  line-height: 1.4em;
  margin: 0;
}

h1 {
  font-size: 2rem;
  line-height: 1.3em;
  color: #337ab7;
}
h2 {
  font-size: 1.5rem;
  line-height: 1.3em;
  color: coral;
}

p {
  margin-bottom: 1.6em;
  /* text-align: justify; */
}

p.left {
  text-align: left;
}
p.right {
  text-align: right;
}
p.justify {
  text-align: justify;
}

.container {
  width: 90%;
  max-width: 100%;
  margin: 0 auto;
}

.header {
  /* background: #333; */
  background: rgb(100, 168, 245);
  color: white;
  padding: 1rem 0;

  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.header a {
  color: white;
  text-decoration: none;
}

.logo-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

img.logo-short {
  width: 50px;
}

img.logo-large {
  display: none;
}
.logo-text {
  letter-spacing: 2px;
  font-size: 1.2em;
}

.menu-icon {
  display: none;
}

.navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.navigation ul li {
  display: inline-block;
}

.menu-options {
  cursor: pointer;
  padding: 0.5rem 1rem;
}

li ul {
  display: none;
}

li ul.show {
  display: block;
  position: absolute;
  background: rgb(131, 182, 241);
  /* -webkit-text-stroke: 1px black; */
}

.navigation ul li a {
  display: block;
  padding: 0.5rem 0.5rem;
  transition: all 0.4s linear;
  border-radius: 5px;
}

.navigation ul li a:hover {
  background: #ffffff;
  color: coral;
}

.navigation ul li a.active {
  background: #ffffff;
  color: coral;
}

.main {
  padding-top: 6rem;
}

.footer {
  background: #000000;
  padding: 1rem 0;
  text-align: center;
  margin-top: 1rem;
  color: white;
}

li a {
  color: white;
  text-decoration: none;
}

span.title {
  text-decoration: underline;
}

@media only screen and (max-width: 1000px) {
  .menu-icon {
    display: block;
    cursor: pointer;
    padding: 0.5rem 1rem;
  }

  img.logo-short {
    display: none;
  }
  
  img.logo-large {
    display: block;
    width: 150px;
  }

  .logo-text {
    display: none;
  }

  .navigation {
    width: 100%;
    margin-top: 1rem;
  }

  .navigation ul {
    display: none;
  }

  .navigation ul.show {
    display: block;
  }

  .navigation ul li {
    display: block;
  }

  li ul {
    display: none;
  }
  
  .menu-options {
    cursor: pointer;
    padding: 0.5rem 1rem;
  }
}