html {
  font-size: 1.125rem;
  line-height: 1.6;
}
* {
  box-sizing: border-box;
  font-style: normal;
  font-weight: normal;
  font-family: Arial, Helvetica, sans-serif;
  text-align: left;
  vertical-align: baseline;
  text-decoration: none;
  color: #000000;
  background-color: transparent;
}
body {
  display: block;
  margin: 2vh 4vw 12vh 4vw;
  width: 92vw;
  background-color: #f9f9f9;
}
div, header, nav, section, footer {
  display: block;
}
a {
  color: #0000ff;
}
a:hover {
  color: #ff0000;
}
h1, h1 *, h2, h2 * {
  font-weight: bold;
  font-size: 1.875rem;
  text-align: left;
}
h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 * {
  font-weight: bold;
  font-size: 1.25rem;
  text-align: left;
}
.em-italic {
  font-style: italic;
}
.em-bold {
  font-weight: bold;
}
.em-italic-bold {
  font-style: italic;
  font-weight: bold;
}
#img-header {
  display: block;
  margin: auto;
  width: 256px;
  height: 78px;
}
#menu-toggle {
  display: block;
  margin: 0;
  padding: 5px;
  text-align: center;
  cursor: pointer;
}
#menu-toggle::before {
  content: "\2630"; /* Hamburger icon */
}
#nav-container.menu-open #menu-toggle::before {
  content: "\2716"; /* Multiplication X - Close icon */
}
#nav-container {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: #e0e0f0;
}
#nav-container > ul {
  display: none;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  align-items: flex-start;
  align-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  text-align: center;
}
#nav-container.menu-open > ul {
  display: flex;
}
#nav-container li {
  margin: 0;
  padding: 0.5rem;
}
section, footer {
  padding: 3rem 0 0 0;
}
.text-align-justify * {
  text-align: justify;
}
.section-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(9, 1fr);
  gap: 5px;
}
.section-container > div {
  padding: 10px;
  border: 4px double #1f1f1f;
  background-color: #f1f1f1;
}
.section-container > div:hover {
  border: 4px solid #1f1f1f;
  background-color: #ffffff;
}
.display-show {
  display: block;
}
.display-hide {
  display: none;
}
.input-style {
  border: 1px solid #1f1f1f;
  width: 100%;
  height: 2rem;
}
.input-style:hover {
  border: 1px solid #00f000;
}
.textarea-style {
  border: 1px solid #1f1f1f;
  width: 100%;
  height: 8rem;
}
.textarea-style:hover {
  border: 1px solid #00f000;
}
button {
  font-size: 1.25rem;
  padding: 0.5rem;
  border: 1px solid #1f1f1f;
}
button:hover {
  background-color: #ddffdd;
}
.footer-container * {
  font-size: 0.875rem;
}
.word-break-all {
  max-width: 100%;
  word-break: break-all;
}
@media only screen and (min-width: 768px) {
  body {
    margin: 2vh auto 12vh auto;
    width: 60%;
    max-width: 960px;
  }
  #menu-toggle {
    display: none;
  }
  #nav-container > ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
    align-content: center;
  }
  .section-container {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
  .footer-container > div {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
  }
  .input-style {
    width: 60%;
  }
  .textarea-style {
    width: 60%;
  }
}
@media only print {
  body, .section-container > div {
    background-color: transparent;
  }
  #nav-container {
    display: none;
  }
}
