body {
  margin: 0;
  padding: 0;
  font-family: Tahoma, sans-serif;
  background: linear-gradient(135deg, #800000, #b30000);
  color: white;
}

.welcome-box {
  text-align: center;
  padding: 3rem 1rem;
}

.welcome-box h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.welcome-box p {
  font-size: 1.2rem;
  color: #f1f1f1;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
}

.gallery img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .welcome-box h1 {
    font-size: 1.8rem;
  }

  .gallery {
    flex-direction: column;
    align-items: center;
  }
}
