/* mobile */
.background-container {
  background: url("../images-v2/bg-m.webp");
  background-size: cover;
  width: 100vw;
  aspect-ratio: 75/64;
  background-repeat: no-repeat;
  position: relative;
  margin-top: 64px;
}

/* tablet */
@media (min-width: 480px) {
  .background-container {
    background: url("../images-v2/bg-d.webp");
    background-size: cover;
    width: 100vw;
    aspect-ratio: 5/2;
    background-repeat: no-repeat;
    position: relative;
  }
}

/* desktop */
@media (min-width: 768px) {
  .background-container {
    background-image: url("../images-v2/image-1216.webp");
    background-size: cover;
    width: 100vw;
    aspect-ratio: 4/1;
    background-repeat: no-repeat;
    position: relative;
  }
}
