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

body {
  background-color: #2d363f;
  background-image: url(./assets/world.svg);
  background-position-x: center;
  background-position-y: 70px;
  background-origin: padding-box;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: left;
  padding: 5% 10%;
  width: 100%;
  margin: auto;
  border: #fbab40;
  height: 100vh;
  max-width: 1000px;
}

.tagline {
  color: #ff9e40;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  margin: 0;
  line-height: 36px;
}

.header > h1 {
  font-weight: 600;
  font-size: 48px;
  line-height: 150%;
  color: #ffffff;
}

.content > p {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #bab6c8;
  margin: 3% 1%;
}

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

@media screen and (max-width: 600px) {

.container{
    background-size: contain;
    background-position-y: left;
  }

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

  body {
    width: 100vw;
  }

  .header img {
    margin-left: 0;
  }

  h1 {
    font-size: 1.6rem;
  }

  ol {
    padding-left: 20px;
  }

  li {
    margin-bottom: 5px;
  }
}
