/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* Reset some default browser styles */
body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  /* Black background */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  /* White text color */
}

/* Container to center content */
.container {
  text-align: center;
}

/* Title Styling */
.title {
  font-size: 3rem;
  color: #e74c3c;
  /* Red color */
  margin-bottom: 0.5rem;
  animation: fadeIn 2s ease-in-out;
}

/* Subtitle Styling */
.subtitle {
  font-size: 1.5rem;
  color: #ccc;
  /* Light gray color */
  margin-bottom: 2rem;
  animation: fadeIn 2.5s ease-in-out;
}

/* Spinner Animation */
.spinner {
  border: 16px solid #333;
  /* Dark border */
  border-top: 16px solid #e74c3c;
  /* Red color for spinning part */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  margin: 0 auto;
}
p a{
  text-decoration: none;
}

/* Developer Name Styling */
.credit {
  margin-top: 2rem;
  font-size: 1rem;
  color: #999;
  /* Light gray color */
  animation: fadeIn 3s ease-in-out;
}

.developer-name {
  font-weight: 600;
  color: #e74c3c;
  /* Red color */
}

/* Keyframes for Spinner */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Keyframes for Fade In Animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
