* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  html,
  body,
  address,
  blockquote,
  div,
  form,
  fieldset,
  caption,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  hr,
  ul,
  li,
  ol,
  ul,
  table,
  tr,
  td,
  th,
  p,
  img {
    margin: 0;
    padding: 0;
  }
  
  img,
  fieldset {
    border: none;
  }

html, body {
    background-color: black;
    color: white;
    font-family: "IBM Plex Sans", sans-serif;
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-size: 1.125rem;
    max-width: 1920px;
    margin: 0 auto;
    text-size-adjust: none;
}

::-moz-selection { /* Code for Firefox */
    color: black;
    background: white;
  }
  
::selection {
    color: black;
    background: white;
  }

a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none !important;
  color: inherit;
}

.container {
    padding-left: 2em;
    padding-right: 2em;
    display: flex;
    flex-direction: column;
    height: 100%;
}

header {
  padding-top: 2em;
  padding-bottom: 2empx;
}

header h1 {
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 700;
}

.card {
  display: flex;
  flex-direction: column;
  padding-top: 2em;
  padding-bottom: 1em;
  height: 100%;
}

.publish {
  display: flex;
  flex-direction: column;
  padding-top: 2em;
  padding-bottom: 1em;
  height: 100%;
}


.card .question {
  font-size: 1.125rem;
  line-height: 1.125rem;
  font-weight: 400;
}

.card .text-box {
  font-size: 1.125rem;
  line-height: 1.125rem;
  font-weight: 400;
  padding: 0.25em 0.25em 0.4em 0.25em;
  border: solid 0.1em rgba(255, 255, 255, 1);
  background-color: black;
  width: 50%;
  margin-top: 1em;
}

.input-clear {
  all: unset;
  display: block;
  box-sizing: border-box;
  font: inherit;
}

.card .buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5em;
  margin-top: 1em;
}

.card .button {
  display: inline-block;
  text-align: center;
  padding: 1em 1em 0.8em 1em;
  font-size: 1.125rem;
  line-height: 1.125rem;
  font-weight: 500;
  text-box: trim-both ex alphabetic;
  width: fit-content;
  background-color: white;
  color: black;
}

.card .button:hover {
  cursor: pointer;
}

footer {
  padding-top: 1em;
  padding-bottom: 1em;
  border-top: solid 0.1em white;
}

.hidden {
    display: none;
}