
  html {
    --text-color: #222;
    --border-radius: 5px;
    --mark-green: #d3f3e6;
  }
  
body {
    margin: 0 auto;
    font-family: "Boing", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
      Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
      "Segoe UI Symbol";
    line-height: 1.5;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }

  .info , .desc {
    font-size: 13px;
    font-weight: 600;
  }
  
  label {
    display: block;
    margin-bottom: 10px;
    padding: 3px;
    font-weight: 500;
    width: intrinsic;
    width: fit-content;
    width: -moz-fit-content;
    width: -webkit-fit-content;
  }
  
  input,
  textarea,
  select {
    font-size: 1em;
    line-height: 1.5;
    border-width: 0 0 2px;
  }
  
  textarea {
    border-color: #ddd;
    border-width: 0 0 2px;
    display: block;
    font-family: inherit;
    margin: 1px 0 1px;
    min-width: 250px;
    min-height: 8em;
    padding: 5px;
    outline: none;
    user-select: text;
    white-space: pre-wrap;
    overflow-wrap: break-word;
    width: 100%;
  }
  
  textarea:focus {
    border-color: var(--text-color);
  }
  
  input {
    border-color: #ddd;
    border-width: 0 0 2px;
    margin: 1px 0 20px;
    min-width: 250px;
    padding: 5px;
    outline: none;
    width: 100%;
  }
  
  input:focus {
    border-color: var(--text-color);
  }
  
  fieldset {
    border: 2px solid var(--text-color);
    border-radius: 3px;
    padding: 20px;
  }
  
  select {
    border-color: #ddd;
    border-width: 0 0 2px;
    margin: 1px 0 20px;
    min-width: 250px;
    padding: 5px;
    outline: none;
    width: 100%;
  }
  
  form {
    max-width: 500px;
    margin: 20px auto;
  }
  
  legend {
    font-size: 1.5em;
  }
  
  .submit,
  .button {
    margin: 0 auto;
    border: 2px solid var(--text-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 1.3em;
    font-weight: 500;
    padding: 10px 15px 10px 15px;
    outline: none;
    width: 200px;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-select: none;
  }
  