body {
  font-family: "Courier New", Courier, monospace;
  font-size: var(--fontsize);
}
:root {
  opacity: 1;
  background-color: #ccd5ae;
  overscroll-behavior: none;
  --primary900: #606c38;
  --INFO: #dfcea1;
  --secondary600: #fefae0;
  --accent: #d4a373;
  --nav: #6d7a44;
  --tri: #e86f32;
  --boxes: #b5e2fa;
  --fontsize: 1.1em;
}
#Title {
  background-color: var(--primary900);
  width: 100%;
}

html {
  overflow-x: hidden;
}

footer {
  background-color: var(--primary900);
  color: black;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
}
body {
  margin-top: auto;
  margin: 0;
}
.Title h1 {
  margin: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: center;
  font-size: 32px;
}
footer {
  padding-top: 8px;
  padding-bottom: 8px;
  margin-top: auto;
  text-align: center;
  background-color: var(--primary900);
  color: black;
  font-weight: bold;
  position: fixed;
  bottom: 0;
  width: 100%;
}
.loader-dots {
  display: inline-block;
}

.loader-dots div {
  width: 15px;
  height: 15px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  animation: loader 1.2s infinite ease-in-out;
  z-index: 1000 !important;
}

.loader-dots div:nth-child(1) {
  animation-delay: 0s;
}

.loader-dots div:nth-child(2) {
  animation-delay: 0.4s;
}

.loader-dots div:nth-child(3) {
  animation-delay: 0.8s;
}

.Title a {
  background-color: var(--primary900);
  color: black;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
}

@keyframes loader {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}

@media screen and (max-width: 919px) {
  footer {
    font-weight: bolder;
  }
}
