* {
  box-sizing: border-box;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue",  Arial, sans-serif;
  margin: auto;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 165px 0 124px;
  width: 100%;
  margin: auto;
  height: 100vh;
  background-color: #242628;
  background-image: url(./assets/world.svg);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: 70px;
  background-origin: padding-box;
}

.header h1 {
  color: #ffffff;
  font-size: 48px;
  text-align: center;
}

.responsive-image {
  width: 50vw;
  max-width: 100%;
}

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

@media screen and (max-width: 600px) {
  .container {
    background-size: contain;
    background-position-y: center;
  }
  h1 {
    font-size: 1.6rem;
  }
}
