body {
  margin: 0;
  padding: 0;
  font-family: 'Bangers', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(to bottom right, #1c3b5a, #000000);
  color: #ffd700;
  min-height: 100vh;
  background-attachment: fixed;
  
}

.marvel-logo {
  max-width: 300px;
  width: 80%;
  margin-top: 20px;
}

.indexp {
  font-size: 1.6rem;
  text-align: center;
  margin: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px #000;
}

.main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
  max-width: 900px;
  padding: 20px;
}

.greeting {
  font-size: 1.4rem;
  color: #00e6e6;
  margin-bottom: 1rem;
}

.button-group {
  width: 100%;
  max-width: 600px;
  background: linear-gradient(to right, #ff1a1a, #cc0000);
  border: 3px solid #ffd700;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  margin-top: 1rem;
  box-shadow: 0 0 10px #ffd700;
}

.button-group h2 {
  color: #fff;
  margin-bottom: 0.5rem;
  white-space: nowrap;
}

.group-description {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  color: #fff;
}

.group-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn {
  font-size: 1rem;
  font-family: 'Bangers', sans-serif;
  background-color: #ffd700;
  color: #1c3b5a;
  padding: 10px 20px;
  border: 2px solid #002366;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #fff;
  color: #ff1a1a;
  transform: scale(1.05);
  box-shadow: 0 0 10px #fff;
}

.footer {
  text-align: center;
  color: #ccc;
  font-size: 0.8rem;
  margin-top: 2rem;
}
.tippy-logo {
  position: absolute;
  top: 10px;
  left: 20px;
  width: 15vw;
  max-width: 150px;
  height: auto;
  transition: transform 0.3s ease-in-out;
}

.tippy-logo:hover {
  transform: scale(1.1);
}
.logo-link {
  display: flex;
  align-items: center;
  margin-left: 0;
}
.legal-footer {
  width: 100%;
  font-size: 0.7rem;
  color: #ccc;
  text-align: center;
  padding: 1rem;
  margin-top: 10rem;
  border-top: 1px solid #333;
  background-color: #1c3b5a;
}
