html {
    max-width: 70ch;
    /* larger spacing on larger screens, very small spacing on tiny screens */
    padding: calc(1vmin + .5rem);
    /* shorthand for margin-left/margin-right */
    margin-inline: auto;
    /* fluid sizing: https://frontaid.io/blog/fluid-typography-2d-css-locks-clamp/ */
    font-size: clamp(1em, 0.909em + 0.45vmin, 1.25em);
    /* use system font stack: https://developer.mozilla.org/en-US/docs/Web/CSS/font-family */
    font-family: system-ui
  }

  /* increase line-height for everything except headings */
  body :not(:is(h1,h2,h3,h4,h5,h6)) {
    line-height: 1.75;
  }

  .header {
    margin-top: 5vh;
    text-align: center;
  }

  .hidden {
    opacity: 0;
    display: none;
  }

  .showing {
    display: block;
    opacity: 1;
  }

  .logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .logo h1 {
    font-weight: bold;
    margin-bottom: 0;
    font-size: 24px;
    line-height: 36px;
  }

  .logo img {
    height: 200px;
  }

  h1 + p {
    margin-top: 0;
  }

  .main {
    margin: 1rem auto;
    max-width: 600px;
  }

  select,
  textarea,
  button,
  .button {
    box-sizing: border-box;
    width: 100%;
    border: 1px solid black;
    border-radius: 10px;
    font-size: 18px;
    padding: 8px 12px;
  }

  button,
  .button {
    display: inline-block;
    color: white;
    background: black;
    margin-top: 1rem;
    width: auto;
    padding: 8px 18px;
  }

  button:hover {
    cursor: pointer;
  }

  button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
  }

  .buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }

  p {
    display: block;
  }

  a {
    color: inherit;
  }

  audio {
    display: block;
    width: 100%;
    display: none;
  }

  form.small textarea {
    min-height: 10rem;
  }

  ul.queue {
    padding: 0;
  }

  ul.queue li {
    list-style: none;
    border-bottom: 1px solid black;
    padding: 2rem 0;
  }

  ul.queue li:last-of-type {
    border-bottom: 0;
  }

  img {
    max-width: 320px;
    max-height: 480px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
    border-radius: 10px;
  }

  h2 {
    margin-top: 0;
  }

  .credits {
    display: block;
    color: #777;
  }

  footer {
    margin-top: 2rem;
  }

  .questions {
    position: absolute;
    padding: 0;
    float: right;
    top:100px;
    left: 350px;
  }

  .questions .question {
    border-radius: 10px;
    padding: 4px 8px;
    margin: 10px 10px 0 0;
    margin-bottom: 20px;
    display: block;
    float:left;
    width: 50%;
    /* white-space: pre-wrap; */
  }

  .questions .answer {
    border-radius: 10px;
    padding: 4px 8px;
    margin: 10px 10px 0 0;
    margin-top: 10px;
    display: block;
    float:right;
    width : 50%;
    /* white-space: pre-wrap; */
  }

  footer {
    text-align: center;
  }

  .question {
    /* float: right; */
    background: #6dadde;
    color: black;
    background-size: 50%;
    /* width: fit-content; */
    height: fit-content;
    float:right;

  }

  .answer {
    /* float: l
    eft; */
    background: #41e6b4;
    color: black;
    background-size: 50%;
    /* width: fit-content; */
    height: fit-content;
    float:left;
  }



  .class1 {
    box-sizing: border-box;
    width: 100%;
    border: 1px solid black;
    border-radius: 10px;
    font-size: 18px;
    padding: 8px 12px;
    display: inline-block;
    /* color: white; */
    /* background: black; */
    margin-top: 1rem;
    width: auto;
    padding: 8px 18px;
  }

  .class1:hover {
    cursor: pointer;
  }

  .class1:disabled {
    cursor: not-allowed;
    opacity: 0.5;
  }


  @font-face {
    font-weight: 400;
    font-style:  normal;
    font-family: 'Circular-Loom';

    src: url('chrome-extension://liecbddmkiiihnedobmlmillhodjkdmb/fonts/CircularXXWeb-Book.woff2') format('woff2');
  }

  @font-face {
    font-weight: 500;
    font-style:  normal;
    font-family: 'Circular-Loom';

    src: url('chrome-extension://liecbddmkiiihnedobmlmillhodjkdmb/fonts/CircularXXWeb-Medium.woff2') format('woff2');
  }

  @font-face {
    font-weight: 700;
    font-style:  normal;
    font-family: 'Circular-Loom';

    src: url('chrome-extension://liecbddmkiiihnedobmlmillhodjkdmb/fonts/CircularXXWeb-Bold.woff2') format('woff2');
  }

  @font-face {
    font-weight: 900;
    font-style:  normal;
    font-family: 'Circular-Loom';

    src: url('chrome-extension://liecbddmkiiihnedobmlmillhodjkdmb/fonts/CircularXXWeb-Black.woff2') format('woff2');
  }
  #message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* center the element */
    z-index: 999;
    background: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 5px;
    text-align: center;
    padding: 10px;
    width: 200px; /* set a fixed width for the message element */
  }

  #message-text {
    display: inline-block;
    font-size: 14px;
    margin: 0 20px;
  }

  #close-message {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 14px;
    cursor: pointer;
  }
