html, body {
  padding: 0;
  margin: 0;
  height: 100%;
  width: 100%;
  color: white;
  font-family: Inter, sans-serif;
  position: relative;
  overflow: hidden;
}

html {
  position: relative;
  background-color: black;

  &:after {
    content: " ";
    position: absolute;
    background-image: url("../media/background.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  body {
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 1300px) {
  html:after {
    transform: rotate(347.2deg) scale(2) translateX(-123px) translateY(76px);
  }
}

@media (max-width: 767px) {
  html:after {
    background-image: url("../media/background-mobile.png");
    transform: initial;
  }
}