/* Make the background fade towards purple in the middle */
body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle, #6a0dad 0%, #1a1a1a 100%);
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  animation: fadeIn 1.5s ease-in-out;
}

/* Header title */
header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #e0b3ff;
  text-shadow: 0 0 10px #8a2be2;
}

/* Paragraph styling */
main p {
  font-size: 1.2rem;
  margin: 10px 0;
}

/* Contact info box */
.contact-info {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  margin-top: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
}

/* Links inside the contact info */
.contact-info a {
  color: #d8b9ff;
  text-decoration: none;
  transition: 0.3s;
}

.contact-info a:hover {
  color: #fff;
  text-shadow: 0 0 5px #d8b9ff;
}

/* Back button */
.back-btn {
  margin-top: 40px;
  display: inline-block;
  text-decoration: none;
  padding: 10px 20px;
  background-color: #8a2be2;
  color: white;
  border-radius: 8px;
  font-size: 1rem;
  transition: 0.3s;
}

.back-btn:hover {
  background-color: #b066ff;
  transform: scale(1.1);
}

/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 📱 Responsive for mobile */
@media (max-width: 600px) {
  header h1 {
    font-size: 2rem;
  }

  main p {
    font-size: 1rem;
  }

  .contact-info {
    width: 100%;
  }
}
