* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Default styles for mobile devices */
.mobile {
  display: block;
}

.desktop {
  display: none;
}

#wrapper div {
  position: relative;
  width: auto;
}

#wrapper a {
  display: block;
  position: absolute;
  height: 13%;
  width: 100%;
  bottom: 0%;
  content: none;
  font-size: 0;
}

/* Media query for devices with a screen width greater than 1024px */
@media screen and (min-width: 1025px) {
  .mobile {
    display: none;
  }

  .desktop {
    display: block;
  }

  #wrapper a {
    height: 23%;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

#wrapper {
  position: relative;
}
