h1 {
  color: #ffffff;
  font-size: 80px;
  text-shadow: 6px 6px 6px #000000;
  transition: color 2500ms ease;
}

h2 {
  color: var(--text-color);
  font-size: 30px;
  text-align: right;
  transition: color 2500ms ease;
}

h3 {
  color: var(--text-color);
  font-size: 20px;
  transition: color 2500ms ease;
}

.page-wrap {
  font-family: "Merriweather", serif;
  text-align: center;
}

table, th, td {
    padding: 5px;
  font-size: 18px;
}

input[type=button]{
  background-color: #AA00AA;
  border: none;
  color: white;
  padding: 10px 14px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: pointer;
}

input[type=submit], input[type=reset] {
  background-color: #00AAAA;
  border: none;
  color: white;
  padding: 10px 14px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: pointer;
}

border {
    border: 2px solid black;
}
 
.a {
    font: 20px arial, sans-serif;
}

.b {
    font: italic bold 12px/30px Georgia, serif;
}

.top {
    border-top:thin solid;
    border-color:black;
}

.bottom {
    border-bottom:thin solid;
    border-color:black;
}

.left {
    border-left:thin solid;
    border-color:black;
}

.right {
    border-right:thin solid;
    border-color:black;
}

.blue {
    color: blue;
}

.red {
    color: red;
}

.green {
    color: green;
}

.yellow {
    background-color: yellow;
}

 .center {
  margin-left: 30px;
  margin-right: auto;
}

/* Hamburger Menu */

.menu-toggle {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  z-index: 10000;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  margin: 5px auto;
  background: #1b2a38;
  border-radius: 999px;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 560px) {
  h1 {
  color: #ffffff;
  font-size: 50px;
  text-shadow: 6px 6px 6px #000000;
  transition: color 2500ms ease;
  }
  
  .menu-toggle {
    width: 60px;
    height: 60px;
    top: 18px;
    right: 18px;
  }

  .menu-toggle span {
    width: 36px;
    height: 4.5px;
    margin: 7.5px auto;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
  }

  .site-menu {
    top: 100px;
  }
}

.site-menu {
  position: fixed;
  top: 76px;
  right: 16px;
  width: min(260px, calc(100vw - 32px));
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  z-index: 9999;

  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.site-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.site-menu a {
  display: block;
  padding: 12px 10px;
  color: #1b2a38;
  text-decoration: none;
  border-radius: 10px;
}

.site-menu a:hover {
  background: rgba(27, 42, 56, 0.08);
}

