#body:after {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;   
    width: 100%;
    height: 100%;
    background-image: url("../images/background.png");
    background-size: cover;
    opacity: 0.55;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
object-fit: fill;
}

h1 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    background-color: blueviolet;
    font-size: 100px;
    background: -webkit-linear-gradient(orange, red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 50px;

}
h2 {
    text-align: center;
    margin-top: 30px;
    font-weight: bolder;
    background-color: aqua;
    width: 100px;
    overflow: hidden;
    margin: auto;
    width: 50%;
    width: 500px;
    color: black;
}
.column {
    float: left;
    width: 50%;
    height: 350px; 
    padding-top: 10px;
    background-color: black;
    color: white;
    font-family: Georgia, 'Times New Roman', Times, serif;

  }
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  .row {
      width: 500px;
      margin: auto;
  }
  #resetbtn {
      display: none;
      background-color: greenyellow;
      font-weight: bolder;
      font-family: Georgia, 'Times New Roman', Times, serif;
      font-size: 18px;
      margin: 0 auto;
  }
  #img {
      width: 220px;
      height: 220px;
      object-fit: fill;
      border: 2px solid red;
      margin-left: 10px;
  }
  #lettersGuessed, #theWord {
    text-transform: capitalize;

  }
  #standing {
      text-align: center;
      display: none;
      
  }
