body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: white;
  color: #ff2020; /* red text */
  text-align: center;
}

header {
  background-color: black;
  color: #ff2020;
  padding: 20px;
  font-size: 30px;
  text-shadow: 0 0 10px #ff2020;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 30px;
}

.gallery img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 20px #ff2020;
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

p {
  font-size: 18px;
  text-shadow: 0 0 5px #ff2020;
}

