/* about.css - Cleaned and syntax corrected */


/* Reset and base styles for consistency */





section {
  min-height: 100vh;
  padding: 2rem 9%;
}






/* --- About Page Under Development Message Styles (fully externalized) --- */
#about-dev-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}
.about-dev-message-content {
  text-align: center;
  max-width: 600px;
}
.bounce {
  font-size: 4rem;
  animation: bounce 1.2s infinite alternate;
  color: #0078d7;
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-18px);
  }
}
#about-dev-message h1 {
  font-size: 2.2rem;
  margin: 1rem 0 0.5rem 0;
  letter-spacing: 1px;
}
#about-dev-message p {
  font-size: 1.15rem;
  color: #444;
  line-height: 1.7;
}
.about-dev-highlight {
  color: #0078d7;
  font-weight: 600;
}
.about-dev-note {
  display: inline-block;
  margin-top: 0.5rem;
}
.about-dev-spinner {
  font-size: 2rem;
  color: #0078d7;
  margin-top: 2rem;
}
