* {
  margin: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: url(../images/pageBG1.png);
  background-repeat: repeat;
  background-attachment: fixed;
}

.grid-container {
  display: grid;
  grid-template-areas:
    "header header header header header header"
    "navbar main main main main quote"
    "footer footer footer footer footer footer";
  gap: 0;
  padding: 0px;
}

.grid-container > div {
  padding: 0.7em;
  font-size: 1em;
}

.float-left {
  float: left;
  width: 2.5em;
  margin-right: 1%;
}

.float-leftcover {
  float: left;
  width: 10vw;
  margin-right: 2%;
}

.item1 {
  grid-area: header;
  background-image: linear-gradient(#f5e2c2, floralwhite);
  border-top: 0.3rem solid #c6bda5;
  border-bottom: 0.3rem solid #c6bda5;
  position: sticky;
  top: 0;
  z-index: 1;
}

.item1 h4 {
  margin: 0%;
  margin-left: 20%;
  font-weight: normal;
  font-style: italic;
  color: #4d6e99;
  font-size: 2em;
  text-shadow: 0vw 0vw 0.1vw #213857;
}

.item2 {
  grid-area: navbar;
  min-width: 15vw;
  color: white;
}

.item2 ul {
  width: 12%;
  list-style-type: none;
  padding: 0;
  margin-left: 2%;
  position: fixed;
}

.item2 li {
  display: grid;
  background-color: #4d6e99;
  border-radius: 12px;
  border-style: outset;
  text-align: center;
  text-decoration: none;
  padding: 0.67em 2em;
  margin: 5% 0;
}

.item2 a {
  color: white;
  text-decoration: none;
}

.item2 li:hover {
  color: white;
  background-color: dodgerblue;
  text-decoration: none;
  cursor: pointer;
}

.item3 {
  grid-area: main;
  width: 95%;
  margin: 5% 0.5em 2em 1.5em;
  border-radius: 20px;
  border-style: ridge;
  border-color: #c6bda5;
  border-width: 0.5em;
  background-image: linear-gradient(
    rgb(202, 225, 255),
    white,
    white,
    rgb(202, 225, 255)
  );
}

.item3 p {
  padding: 0.5em 1em 0.5em 1em;
}

.item3 ul li {
  font-size: 2em;
}
.item3 a:visited {
  text-decoration: none;
  color: #4d6e99;
  font-weight: bold;
}

.item3 a {
  text-decoration: underline;
  color: #4d6e99;
}

.item3 a:visited {
  text-decoration: none;
  color: #4d6e99;
  font-weight: bold;
}

.noteBullets {
  list-style-image: url("/images/noteUpBlue.png");
  list-style-position: outside;
  font-size: 0.9em;
  margin: 0em 0em 0.5em 1em;
}

.noteBullets a:hover {
  color: brown;
}

h2 {
  color: #4d6e99;
  padding: 0.3em;
}

h3 {
  color: #4d6e99;
  font-size: 1.1em;
  font-style: italic;
  margin-left: 2%;
}

.item3 h4 {
  color: #4d6e99;
  font-size: 1.1em;
  font-style: italic;
  margin-left: 3%;
  margin-bottom: 1.5em;
}

.item4 {
  grid-area: quote;
  margin: 2% 2%;
  min-width: 15vw;
}

.quotecontainer {
  width: 95%;
  background-color: #a59476;
  color: white;
  padding: 0.67em 1em;
  margin: auto;
  margin-right: 1.5vw;
  font-size: 0.9em;
  font-weight: 700;
  border-radius: 15px;
  border-style: ridge;
  border-color: brown;
  border-width: 0.4em;
  text-shadow: -0.07em 0.07em 0.1em #000000;
}

.quotesource {
  text-align: right;
  font-size: 0.8em;
  padding-top: 0.7em;
}

.item5 {
  grid-area: footer;
  height: 6vw;
  background-image: linear-gradient(floralwhite, #f5e2c2);
  border-top: 0.3rem solid #c6bda5;
  border-bottom: 0.3rem solid #c6bda5;
  text-align: center;
}

.item5 ul {
  list-style: none;
}

.item5 li {
  display: inline;
}

.item5 a:visited {
  text-decoration: none;
}

.item5 a:hover {
  background-color: #c7b28d;
}

.imgLogo {
  max-width: 17%;
}

.imgLogoTitle {
  max-width: 33%;
}

.button {
  background-color: #f5e2c2;
  border-radius: 7px;
  padding: 0.25em 0.8em;
  color: black;
  font-size: 1em;
  text-decoration: none;
}

.item3 table {
  margin-bottom: 0.5em;
  max-width: 95%;
  border-spacing: 0.25em;
  margin-left: 1em;
}
.item3 tr {
}
.item3 td {
  width: 50%;
  vertical-align: top;
  font-size: 0.9em;
}

.musicDesc {
  font-size: 0.9em;
  text-align: center;
}

audio {
  display: block;
  width: 100%;
  max-width: 400px;
  height: 2.5vw;
  background-color: #c7b28d;
  border-style: outset;
  border-color: #c6bda5;
  border-width: 0.3vw;
  border-radius: 1.5em;
  margin-bottom: 0.5em;
  z-index: -1;
}

section {
  display: inline-block;
  min-width: 18em;
  margin-left: 9vw;
}

@media screen and (max-width: 800px) {
  p {
    font-size: 0.9em;
  }
  .grid-container {
    grid-template-areas:
      "header header header header header"
      "navbar navbar navbar navbar navbar"
      "main main main main main"
      "footer footer footer footer footer";
  }
  .imgLogo {
    max-width: 25%;
  }
  .imgLogoTitle {
    max-width: 45%;
  }
  .item1 h4 {
    font-size: 1em;
    margin-left: 7em;
  }
  .item2 {
    max-width: 100%;
    z-index: 0;
  }
  .item2 ul {
    display: inline-flex;
    font-size: 0.75em;
    margin-top: 0;
  }
  .item2 li {
    margin-right: 0.3em;
  }
  .item3 {
    margin-top: 10%;
    margin-left: 1.1em;
    width: 93%;
  }
  .item3 p {
    margin-top: 0.1em;
    font-size: 0.8em;
  }
  .item3 ul {
    padding-left: 1.5em;
  }
  .item3 ul li {
    font-size: 0.9em;
  }
  .item3 h2 {
    font-size: 1.2em;
  }
  .item3 h4 {
    font-size: 0.9em;
  }
  .item4 {
    margin-top: 7%;
  }
  .item4 {
    display: none;
  }
  .item5 {
    height: auto;
  }
  .item5 ul {
    display: none;
  }
  .copyright {
    color: black;
    font-size: 0.7em;
  }
  audio {
    height: 6vw;
    border-width: 0.7vw;
    width: 90%;
    margin-left: 1.5em;
    z-index: -1;
  }
  .item3 ol {
    font-size: 0.8em;
    padding-left: 1.2em;
    max-width: 67vw;
  }
  .item3 table {
    font-size: 1em;
  }
}

@media screen and (min-width: 800px) {
  .item2 {
    width: 25%;
    margin: 0.5em;
    margin-left: 1em;
    min-height: 33vw;
  }
  .item2 ul {
    font-size: 1em;
    width: 8em;
    margin-top: 0;
    margin-left: 0;
  }
  .item2 ul li {
    padding-left: 1.5em;
  }
  .item3 h2 {
    font-size: 1.5em;
  }
  .item3 p {
    font-size: 1em;
  }
  .item3 ul {
    padding-left: 1em;
  }
  .item3 ul li {
    font-size: 1em;
  }
  .item4 {
    margin-top: 2.5vw;
  }
  .item5 {
    height: 10vw;
  }
  .copyright {
    color: black;
    font-size: 1.3vw;
    padding-top: 0.8em;
  }
  .item3 table {
    width: 95%;
    font-size: 1.1em;
  }
}

@media screen and (min-width: 1100px) {
  p {
    font-size: 1em;
  }
  .imgLogo {
    max-width: 15%;
  }
  .imgLogoTitle {
    max-width: 30%;
  }
  .item2 {
    margin-top: 2.3em;
    min-height: 20em;
  }
  .item2 ul {
    width: 12em;
  }
  .item2 ul li {
    font-size: 1.1em;
    margin-top: 1%;
  }
  .item1 h4 {
    margin-left: 20vw;
    font-size: 1.3em;
  }
  .item3 {
    width: 95%;
    margin-right: 10em;
    margin-left: 3em;
  }
  .item3 h2 {
    font-size: 1.5em;
  }
  .item3 h3 {
    font-size: 1.2em;
  }
  .item3 p {
    font-size: 1em;
  }
  .item3 ul li {
    font-size: 1.1em;
  }
  .item4 {
    max-width: 80%;
    margin-left: 2em;
  }
  .item3 {
    max-width: 100%;
  }
  .item5 {
    height: 6em;
  }
  .copyright {
    color: black;
    font-size: 0.8em;
    padding-top: 1em;
  }
  .item3 table {
    width: 80%;
    font-size: 1.1em;
  }
}
