  body {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: black;
  }
  a {
    color: #a6c9de;
    text-decoration: none;
  }
  input[type="radio"] {
    display: none;
  }
  input[type="radio"] + label {
    cursor: pointer;
  }
  input[type="radio"]:checked + label {
    color: #2a6b93;
  }

  #french:checked ~  .fr {
    display: block !important;
  }

  #french:checked ~ .en {
    display: none;
  }

  #english:checked ~ .en {
    display: block;
  }
  #english:checked ~ .fr {
    display: none;
  }
  
    /* there is a script to display it (not triggered on email but web page) */
  .language-button {
    display: none;
  }
  .two-column {
    column-count: 2;
  }
  @media (max-width: 500px) {
    h1 {
      font-size: 3em !important;
    }
    .two-column {
      column-count: 1 !important;
    }
    img {
      width: 80px !important;
    }
    img.logo {
      width: auto !important;
    }
  }
