body {
  font-family: -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  width: 100vw;
  height: 100vh;
  padding: 0;
  margin: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #0f1738 url(/promo.svg) no-repeat;
  background-size: cover;
  background-position: bottom 0px right -340px;
}

.promo-text {
  color: #f9f9f9;
  font-size: 22px;
  font-weight: 700;
  position: absolute;
  margin: 0;
  top: 20%;
}

@media screen and (min-width: 640px) {
  body {
    background-position: bottom 0 right -210px;
  }

  .promo-text {
    font-size: 32px;
  }
}

@media screen and (min-width: 820px) {
  body {
    background-position: bottom 0 right -120px;
  }
}

@media screen and (min-width: 1280px) {
  body {
    background-position: bottom 0 right 0;
  }

  .promo-text {
    font-size: 40px;
    top: 25%;
    left: 20%;
  }
}

@media screen and (min-width: 1920px) {
  .promo-text {
    font-size: 56px;
  }
}
