body {
  background-color: #333;
  color: #ccc;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.logo-letter {
  font-family: 'Press Start 2P', cursive;
  font-size: 64px;
  color: #8b0000;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: logo-animation 4s infinite;
  position: relative;
}

@keyframes logo-animation {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-20px);
    text-shadow: 0 0 20px #ff0000;
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}

.logo-letter {
  animation-delay: 2s;
}

.logo-letter:nth-child(1) {
  animation-delay: 2s;
}

.logo-letter:nth-child(2) {
  animation-delay: 2.2s;
}

.logo-letter:nth-child(3) {
  animation-delay: 2.4s;
}

.logo-letter:nth-child(4) {
  animation-delay: 2.6s;
}

.logo-letter:nth-child(5) {
  animation-delay: 2.8s;
}

.logo-letter:nth-child(6) {
  animation-delay: 3s;
}

.button-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.animated-button {
  background-color: #8b0000;
  color: #ccc;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.animated-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.5s ease;
  z-index: -1;
}

.animated-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.animated-button:hover::before {
  left: 0;
}

.back-button {
  display: inline-block;
  margin: 20px;
  padding: 5px 10px;
  background-color: #8b0000;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  transition: background-color 0.3s ease;
}

.back-button:hover {
  background-color: #b30000;
}

.back-button {
  position: absolute;
  left: 20px;
  top: 20px;
}

