/* Reset default margins/padding */
body {
  margin: 0;
  padding: 0;
}

/* Banner wrapper */
.banner-wrapper {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  text-align: center;   
  position: relative;
}

/* Banner image */
.banner-wrapper img {
  max-width: 80%;   
  height: auto;     
  display: block;   /* removes inline spacing issue */
  margin: 0 auto;   /* keeps it centered */
  object-fit: contain;   
}

/* Tablet screens */
@media (max-width: 768px) {
  .banner-wrapper {
    padding: 15px;
    margin-top: 0 !important;
  }

  .banner-wrapper img {
    max-width: 90%;
  }
}

/* Mobile screens */
@media (max-width: 480px) {
  .banner-wrapper {
    padding: 10px;
    margin-top: 0 !important;
  }

  .banner-wrapper img {
    max-width: 100%;
  }
}
