body {
    font-family: sans-serif;
  }
  
  .header {
    display: flex;
    justify-content: center;
  }
  
  .header__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .body__container {
    display: flex;
    justify-content: center;
    justify-content: space-between;
    margin: 20px 10px;
  }
  
  .body__container--left {
    justify-content: flex-start;
    align-content: left;
    border: 3px solid #d6d1cf;
    padding: 20px;
  }
  
  .body__container--right {
    justify-content: flex-start;
    align-content: right;
    border: 3px solid #d6d1cf;
    padding: 20px;
    
  }

  .footer {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  
  .footer__rights {
    color: #d6d1cf;
    font-style: italic;
    padding-bottom: 10px;
  }
  
  .footer__tnc {
    color: #d6d1cf;
    font-style: italic;
  }
  