body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: url('img/background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
}
.overlay {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
  min-height: 100vh;
  padding: 4rem 1rem;
}
h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.subhead {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.image-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 0 auto;
  max-width: 600px;
  padding: 0.5rem 0;
}
.image-menu img {
  width: 100px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.2s ease;
}
.image-menu img:hover {
  transform: scale(1.08);
}
