* {
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fcf6f0;
    margin: auto;
  }

  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 165px 0 124px;
    width: 100%;
    margin: auto;
    border: #c77923;
    height: 100vh;
    background-color: #1f1f1f;
    background-image: url(./assets/world.svg);
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: 70px;
    background-origin: padding-box;
  }
  
  .main h3 {
    text-align: center;
    color: #c77923;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    margin: 0;
    line-height: 36px;
  }
  
  .main {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    font-style: normal;
  }
  
  .main > h1 {
    font-style: normal;
    font-weight: 600;
    font-size: 48px;
    line-height: 150%;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fcf6f0;
  }
  
  .main > p {
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    text-align: center;
    color: #fcf6f0;
    flex-grow: 0;
    margin: 16px 0px;
  }
  
  .main > p > code {
    font-size: 20px;
    line-height: 150%;
    color: #fcf6f0;
    padding: .2em .4em;
    white-space: break-spaces;
    border-radius: .3em;
    background-color: #fcf6f040;
  }
  
  .contact > p {
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    color: #fcf6f0;
    flex-grow: 0;
    margin: 16px 0px;
  }
  
  .contact > p > a {
    color: #c77923;
    text-decoration: underline;
    margin: 0px 8px;
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
  }
  
  @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;
    }
  }
  