body {
  margin: 0;
  padding: 0;
}

.banner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative; /* added so overlay is positioned inside */
}

.banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.banner-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex; /* arrange socials horizontally */
  gap: 10px;     /* spacing between icons */
  z-index: 2;
}

/* Hide banner on screens 768px wide or less */
@media (max-width: 768px) {
  .banner {
    display: none;
  }
}
