/* Body background */
body {
  background-image: url('background.jpg');
  background-size: cover;
  background-position: center;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

/* Button image styling */
#images {
  margin: 20px;
}

/* Optional: make buttons responsive and aligned */
.button-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

#images img {
  width: 200px;
  height: 100px;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}

#images img:hover {
  transform: scale(1.05);
}

/* Centered banner image */
h1 img {
  display: block;
  margin: 40px auto 20px;
