* {
  box-sizing: border-box;
  margin: 0;
}

html,
body {
  width: 100%;
  height: 100%;
  background-color: #242628;
  background-image: url(./assets/world.svg);
  background-repeat: no-repeat;
  background-position: center 70px;
  background-origin: padding-box;
}

@media screen and (max-width: 1024px) {
  html,
  body {
    background-size: contain;
    background-position-y: center;
  }
}

@media screen and (max-width: 600px) {
  html,
  body {
    background-size: contain;
    background-position-y: center;
  }
}
