
#cs {
  font-family: "Alumni Sans", sans-serif;
  font-size: 16px;
}

#cs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 30vh;
  font-size: 2em;
  background: #fff;
  color: #2e772b;
  text-transform: uppercase;
  gap: 30px;
}

#h1 {
  font-size: 2.5em;
  text-decoration: underline;
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.3em;
  }
}

.text-shadow {
  font-style: italic;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: #2e772b;
  -webkit-text-stroke-width: 1px;
  text-shadow: 2px 2px 10px #2e772b;
  transition: all 0.6s ease-in-out;
  text-align: center;
  letter-spacing: 0.2em;
  -webkit-animation: flicker 0.6s ease-in-out infinite alternate;
          animation: flicker 0.6s ease-in-out infinite alternate;
}
.text-shadow:hover {
  color: #2e772b;
}

@media (max-width: 768px) {
  .tags small {
    font-size: 0.5em;
  }
}

@-webkit-keyframes flicker {
  0% {
    opacity: 0.5;
    text-shadow: 2px 2px 10px #2e772b;
  }
  100% {
    opacity: 1;
    text-shadow: 2px 2px 20px #2e772b;
  }
}

@keyframes flicker {
  0% {
    opacity: 0.5;
    text-shadow: 2px 2px 10px #2e772b;
  }
  100% {
    opacity: 1;
    text-shadow: 2px 2px 20px #2e772b;
  }
}