html {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
  font-size: 1rem;
  background-color: #B0DAD4;
  background-image: url("https://promos.greybih.co.ba/files/pampers-logo-bg.png");
  background-repeat: repeat;
  background-size: 200px;
}

.banners {
  margin: 0;
  padding: .25rem;
  height: 100%;
  display: flex;
  gap: .25rem;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (min-width: 576px) {
  .banners {
    flex-direction: row;
    padding: .25rem;
  }

  a {
    flex-direction: row;
    padding: .25rem;
  }

  img {
    display: block;
  }
}

