body {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d4a2d 100%);
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  font-family: "Montserrat";
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 2px,
    rgba(46, 125, 50, 0.03) 2px,
    rgba(46, 125, 50, 0.03) 4px
  );
}

.appearFirst {
  opacity: 0;
  animation: appear 0.6s ease forwards 1s;
}

.appearSecond {
  opacity: 0;
  animation: appear 0.6s ease forwards 2.3s;
}

h1 {
  font-size: 7vw;
  font-weight: 700;
  color: #019d00;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  animation: glow 2s ease-in-out infinite alternate;
}

.content {
  z-index: 2;
}

.content > p {
  text-transform: uppercase;
  font-size: clamp(2vw, 2.5vw, 3rem);
  color: #b8b8b8;
  font-weight: 700;
  margin-top: 1rem;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8);
}

.buttons {
  margin-top: 3rem;
  display: flex;
  gap: 3vw;
  z-index: 2;
}
button {
  padding: 12px;
  min-width: 10vw;
  background-color: transparent;
  font-size: 18px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  border: solid 1px black;
  border-radius: 4px;
  color: #b8b8b8;
  opacity: 0;
  animation: appearButton 0.6s ease forwards;
  cursor: pointer;
  transition: transform 0.2s ease;
}
a{
    color: #b8b8b8;
    text-decoration: none;
}

button:first-child {
  animation-delay: 3.3s;
}

button:last-child {
  animation-delay: 3.5s;
}

button:hover {
  transform: scale(1.1);
}

button:active {
  transform: scale(0.9);
}
