#chooseForm label {
  display: inline-block;
  vertical-align: top;
  margin-left: 0.5em;
  width: calc(100% - 3em);
  white-space: normal;
  line-height: 1.5;
}

#chooseForm input[type="radio"] {
  vertical-align: top;
  margin-top: 0.2em;
}

#chooseForm br {
  line-height: 1.8;
}

.expanded {
  line-height: 1.5;
}

#background {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-repeat: repeat-y;
    z-index: -1;
    opacity: 1.0;
}

.about-game {
/*     display: inline; */
/*     vertical-align: top; */
    background-color: green;
}

.light {
    cursor : pointer;
    border: 1px solid black;
    color: black;
    background-color: white;
    padding: 4px;
    border-radius: 7px;
    opacity: 0.8;
    max-width: 45em;
    font-size: 1em;
    width: max-content;
}

#status-region {
    opacity: 1.0;
    width: max-content;
    color: green;
    background-color: white;
    max-width: 45em;
}

#waitHereDiv {
    cursor : pointer;
    border: 1px solid black;
    color: black;
    background-color: lightgrey;
    padding: 4px;
    border-radius: 7px;
    opacity: .7;
    max-width: 25em;
    font-size: 0.9em;
}

.explanation {
    border: 1px solid black;
    color: black;
    background-color: white;
    padding: 4px;
    margin: 5px;
    border-radius: 7px;
    opacity: .95;
    display:block;
    max-width: 40em;
    font-size: 0.8em;
    clear:both;
}
.hidden {display: none; }
#welcome {
    cursor : pointer;
    border: 1px solid black;
    color: black;
    padding: 4px;
    border-radius: 7px;
    opacity: .7;
    max-width: 45em;
    font-size: 2em;
}
.plus:after {
    content:" +"; width:1em; display:inline-block;
}
.minus:after {
    content:" -"; width:1em; display:inline-block;
}
.entry-error {
    background: red;
    font-size: 1.2em;
    width: max-content;
}

form {
    font-size: 1.2em;
}
 /* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 40em;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
/*
 <div class="tooltip">Hover over me
  <span class="tooltiptext">Tooltip text</span>
 </div>
*/

.title {
    margin:auto;
    max-width:fit-content;
    font-size:2em;
    font-width:bold;
}

#my-answer {
    font-size:1.5em;
    font-style:italic;
    width:fit-content;
    background-color: "green";
}
