:root{
  font-family: "ocr-a-std", monospace;
  font-weight: 400;
  font-style: normal;
}

.footer-shell {
  --footer-height: 25vh;

  position: fixed;
  z-index: 10;
  right: 0;
  bottom: 0;
  left: 0;

  height: var(--footer-height);

  transform: translateY(calc(100% - 4vh));

  transition: transform 300ms ease;
}


.footer-shell.is-open {
  transform: translateY(0);
}


.footer-toggle {
  display: flex;
  height: 4vh;
  margin: 0 auto;
  padding: 0 1rem;

  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.footer-arrow {
  display: inline-block;
  transition: transform 300ms ease;
  
}

.footer-shell.is-open .footer-arrow {
  transform: rotate(180deg);
}

.footer-panel {
  position: relative;

  height: calc(100% - 4vh);
  overflow: auto;
  background-image: url("../textures/footer-texture.png");
  opacity: 0.8;
  border-top: 2px solid white;
  box-shadow: 0 0 30px white;
  text-align: center;
}

#footer-grid{
  width: inherit;
  height: 100%;
  display: grid;
  grid-template-rows: 2fr 3fr 1fr;
  grid-template-columns: repeat(12,1fr)

}

#footer-grid div{
  text-align: center;
  align-content: center;
  font-size: x-large;
  color: white;
  text-shadow:  0 1px 2px black, 2px 2px 5px white, 4px 4px 1px black;
  

}


.footer-toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .footer-shell,
  .footer-arrow {
    transition: none;
  }
}