/******************* MAIN *******************/

h1 {
  text-align: left;
}

h2 {
  padding: 1rem 0;
  text-align: left;
}

ul {
  padding: 0.5rem;
  padding-left: 2rem;
  list-style-type: none;
}

.last-updated {
  padding-bottom: 0.8rem;
  font-size: 0.8rem;
  font-style: italic;
  /* color: #666; */
}

span {
  font-weight: bold;
}

.address {
  font-weight: inherit;
  padding-left: 4.5rem;
}

.no-indent {
  font-weight: inherit;
}

.contactInfo {
  padding-top: 0.5rem;
  padding-left: 3rem;
  padding-bottom: 2rem;
  font-size: 0.8rem;
  /* color: gray; */
}

p {
  padding-left: 2rem;
}

/******************* Media Queries Breakpoints *******************/
/* Media queries can be placed in both global CSS files and within  */
/* component-specific or "endpoint" CSS files, depending on the project's  */
/* organization and desired modularity. */

/* Styles for screens less than 576px (e.g., smartphones) */
@media screen and (width < 576px) {
  header {
    display: block;
  }
  .header {
    height: 0;
  }

  .csLogo {
    height: 100px;
  }

  .navigation {
    height: 20px;
    text-align: center;
  }

  .nav-top {
    height: 0;
  }

  .nav-bottom {
    word-spacing: 6px;
  }

  .nav-bottom a {
    font-size: 0.96rem;
  }

  .rights img {
    width: 200px;
    height: auto;
  }
}

/* Styles for screens wider than 576px -  768px (e.g., tablets) */
@media screen and (width >= 576px) and (width < 768px) {
  header {
    display: block;
  }

  .header {
    height: 0;
  }

  .csLogo {
    height: 100px;
    text-align: left;
  }

  .navigation {
    height: 20px;
    text-align: center;
  }

  .nav-top {
    height: 0;
  }

  .nav-bottom {
    word-spacing: 6px;
  }

  .rights img {
    width: 250px;
    height: auto;
  }
}
