body {
    background-color: black;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    text-align: center;
}

.intro-text h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #a8ff60; 
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: auto;
}

.image-gallery {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.image-gallery img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(168, 255, 96, 0.7);
}

footer {
  text-align: center;
  padding: 15px;
  background-color: black;
  color: #fff;
  margin-top: 40px;
}
