body, html {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background: #231f20;
}

.desktop-image,
.mobile-image {
  width: 100%;
  display: none;
}

.mobile-image {
  object-fit: contain;
  height: 100vh;
  background-color: #231f20;
}

/* Show desktop image on large screens */
@media (min-width: 768px) {
  .desktop-image {
    display: block;
  }
}

/* Show mobile image on smaller screens */
@media (max-width: 767px) {
  .mobile-image {
    display: block;
  }
}