body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.full-page-image {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.full-page-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 20px;
}