body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #3F51B5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content {
  max-width: 800px;
  padding: 20px;
  background: white;
  text-align: center;
}

.cover-image {
  width: 100%;
  height: auto;
}

.description {
  font-size: 14px;
  margin-top: 10px;
}

.gap {
  height: 50px;
}

.video {
  width: 100%;
  height: auto;
  margin-top: 20px;
}

.image-gallery {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.gallery-image {
  width: 30%;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-image:hover {
  transform: scale(3);
}

.bottom-gap {
  height: 600px; /* Ensure there's enough space for the enlarged images */
}

.name {
  font-size: 18px;
  margin-top: 20px;
}
