* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #0f172a;
  color: #e2e8f0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background-color: #1e293b;
  padding: 20px;
  text-align: center;
  border-bottom: 2px solid #334155;
}

header h1 {
  font-family: 'Orbitron', sans-serif;
  color: #38bdf8;
  font-size: 2rem;
  margin-bottom: 10px;
}

nav a {
  color: #cbd5e1;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #38bdf8;
}


.gallery-section {
  flex: 1;
  padding: 40px;
  background-color: #0f172a;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.gallery-card {
  background-color: #1e293b;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.gallery-card:hover {
  transform: scale(1.03);
}

.gallery-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery-card p {
  padding: 15px;
  text-align: center;
  font-size: 1rem;
  color: #e2e8f0;
}


footer {
  background-color: #1e293b;
  color: #94a3b8;
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
}
