body {
      color: #181818;
      background: #e2ddcd;
      font-family: "Space Mono", monospace;
      font-size: 16px;
      margin: 0px;
      padding-top: 10px;
      overflow-x: hidden;
      --accent: #b5cda9;
  }
  
  img{
    max-width: 100%;
  }
  
.page-container {
    padding: 0 10px;
}
  .container {
      max-width:300px;
      margin:0 auto;
      background-size: contain;
      background-position: center;
      transition: all .6s ease;
      position: relative;
      z-index: 1;
      margin-top: 45px;
  }

  .container_bg {
    position: absolute;
    z-index: -1;
    margin-top: -100px;
  }
  
  .logo img {
      max-width:80px;
  }
  
  .desc {
      font-size: 18px;
      text-align: center;
      line-height: 1.5;
      margin: 0 auto;
      color: #777265;
      margin-top:40px;
      text-transform: uppercase;
  }
  
  .cta-container {
      display: flex;
      flex-direction: row;
      margin: 35px auto 30px auto;
      align-items: center;
      justify-content: space-around;
  }
  
  .header-cta {
    text-align: center;
    display: block;
    width: 100%;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1.5;
    color: #0d0d0d;
  }
  

  .header-cta a {
    color:#777265;
    text-decoration: none;
  }
  

@media only screen and (max-width: 600px) {
    .page-container, .container {
        width: 100%;
        max-width: 100%;
        padding: 10px;
        box-sizing: border-box;
    }
    .container {
        background-repeat: no-repeat;
        background-size: cover;
    }
    .btn {
        font-size: 11px;
    }
    .footer {
        margin-top: 40px;
    }
}