/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&family=Roboto:wght@400;500&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  text-align: center;
}

h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  margin: 1.5rem 0 0.5rem;
  color: #1e88e5;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.desc {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 0 1rem 2rem;
}

.gallery img {
  width: 250px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.footer {
  margin-top: 2rem;
  padding: 1rem;
  background-color: #1e88e5;
  color: white;
  font-size: 0.9rem;
  border-radius: 10px;
} 
.footer a {
  color: #ffeb3b;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer p {
  margin: 0;
}