/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #49754f;
  color: white;
  font-family: Verdana;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  margin-bottom: 50px;
  overflow: hidden;
}

#wholepage {
  display: grid;
  grid-template-rows: 60px 25px 30px 25px auto;
  max-height: 98vh;
  min-height: 98vh;
}

#layoutspace {
  width: 100%;
  display: grid;
  grid-template-rows: 10px auto 30px;
  gap: 0px;
}

#progressbar {
    border: solid 5px black;
    border-bottom: 0;
    left: 5px;
    right: 5px;
    background-color: white;
    height: 5px;
}

#allanswers {
    display: block;
    border: solid 5px black;
    overflow-y: hidden;
}

#advertising {
    border: solid 5px black;
    border-top: 0;
    left: 5px;
    right: 5px;
    background-color: white;
}

#allanswers span {
  width: 20px;
  overflow: hidden;
  display: inline-block;
  background-color: white;
  margin: 1px;
  padding: 2px;
  border: solid 1px white;
  text-indent: -9999px;
}

.ra {
    width: auto !important;
    color: white;
    background-color: transparent !important;
    text-indent: 0px !important;
}

#targetword {
  font-weight: bold;
}

#results {
  display: inline-block;
  overflow: visible;
}

#results span {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    display: block;
}

#yesbox { 
  background-color: lightgreen;
}

#nobox {
    background-color: red;
}
