html {
    height: auto;
    margin: 0;
    padding: 0;
    width: 100%;
  }
  body {
    color: ghostwhite;
    font-family: Arial, sans-serif;
    font-size: 1em;
    margin: 0;
    overflow: hidden;
    padding: 0;
    text-align: center;
  }
  #BG{
      height: 100vh;
      padding: 0;

  }
  .results {
    align-items: center;
    display: flex;
    height: 80vh;
    justify-content: center;
    text-align: center;
    width: 100%;
    flex-direction: column;
  }
  .desc,
  .noun {
    font-size: 5em;
    padding: 0.3em;
    text-align: center;
  }
  button {
    background-color: #00000066;
    border: none;
    bottom: 0px;
    cursor: pointer;
    height: 15vh;
    margin-left: -50%;
    position: fixed;
    outline: none;
    width: 100%;
  }
  
  button:active,
  button:focus,
  button:hover {
    background-color: #00000099;
    border: none;
    outline: none;
  }
  button span {
    color: ghostwhite;
    font-size: 8vh;
    font-weight: bold;
    transform: rotate(90deg);
  }
  header {
    color: #00000066;
    font-weight: 300;
    font-size: 3vh;
    letter-spacing: 0.2rem;
    padding-top: 2vh;
    text-transform: uppercase;
    text-align: center;
    
  }
  a{
    text-decoration: none;
  }
  .copyright a {
    color: #00000099;
  }
  .copyright {
    color: #00000099;
    font-size: 0.7em;
    margin-top: 4vh;
    opacity: 0.5;
    width: 100%;
  }
  /** LIGHTBOX MARKUP **/

.lightbox {
  display: none;
  color:whitesmoke;
  font-size: 3vh;
  line-height: 1.4em;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1em;
  background: #222;
  text-align: left;
  margin:20px;
}

/* Unhide the lightbox when it's the target */
.lightbox:target {
  display: block;
}

.lightbox span {
  /* Full width and height */
  display: block;
  width: 100%;
  height: 100%;

  /* Size and position background image */
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.lightbox h2{
  text-align: center;
}