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

.bg-image {
  position: absolute;
  bottom: -88%;
}

.container {
  display: flex;
  padding: 50px;
  border: #fbab40;
  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;
}

h1 {
  font-style: normal;
  font-weight: 600;
  color: #ffffff;
}

p {
  font-style: normal;
  font-weight: 400;
  color: #ffffff;
  flex-grow: 0;
  margin: 16px 0px;
}

@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;
  }

  pre {
    font-size: 0.8rem;
    padding: 8px 12px;
    width: 100%;
  }

  body {
    width: 100vw;
  }

  .header img {
    margin-left: 0;
  }

  .installation-steps {
    width: 100%;
    box-sizing: border-box;
  }

  h1 {
    font-size: 1.6rem;
  }

  ol {
    padding-left: 20px;
  }

  li {
    margin-bottom: 5px;
  }
}