body,
html {
  margin: 0;
  background-color: #16A34A;
  color: #fefefe;
  height: 100vh;
  height: 100dvh;
  font-size: 19px;
  line-height: 1.5rem;
  /* font-family: 'Source Code Pro', monospace; */
  font-family: 'Bricolage Grotesque', system-ui;
}
body {
  padding: 0.5rem;
  width: 100%;
}
a {
  color: #fefefe;
  text-decoration: none;
  border-bottom: 4px solid transparent;
  padding: 0.5rem;
  font-size: 1.25rem;
  line-height: 2rem;
}
a.special {
  border: 4px solid transparent;
  border-radius: 1rem;
  padding: 1rem;
}
a.small {
  font-size: .8rem;
  padding: .25rem;
  line-height: 1.2rem;
  text-transform: capitalize;
  border-bottom: 2px solid transparent;
}

a:hover {
  border-color: #fefefe;
}
h1.title {
  padding: 1rem 2rem;
  text-align: center;
}

.nav-home {
  display: flex;
  justify-content: end;
  padding: .25rem 1.5rem;
}
.nav-home li {
  margin: .5rem;
}

.fade {
  -moz-animation-duration: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -moz-animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fade;
  animation-name: fade;
}

ul {
  padding: 1rem;
  list-style: none;
  text-align: center;
}
li {
  margin: 1rem;
  display: inline;
  text-transform: uppercase;
}

.logo {
  margin: 0.5rem auto;
  width: 240px;
}

.copyright {
  padding-bottom: 20px;
  font-size: .9rem;
  text-align: center;
  color: red !important;
}

.footer {
  
  background-color: #dedede;
  color: darkgray;
  width: 100%;
  min-height: 30px;
}
.footer-content {
  /* max-w-7xl mx-auto px-8 py-24 */
  /* w */
  display: flex;
  padding: 2rem 1rem;
  margin: auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;

}

.landing-container {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


@media only screen and (max-width: 588px) {
  li {
    display: block;
  }
  .footer {
    grid-template-columns: 1fr; 
  }
}


@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}