.container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.img-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../img/1920x1080.png");
}

@media screen and (max-width: 1080px) {
  .img-container {
    background-image: url("../img/1080x1920.png");
  }
}

body {
  background-color: black;
}



