body,
html {
    font-family: monospace;
    color: #149414;
    background-color: #1a1818;
    text-decoration: none;
  }

h1 {
    text-align: center;
    font-family: monospace;
    font-weight: lighter;
    text-decoration: none;
   }
h2 {
    text-align: center;
    font-family: monospace;
    font-weight:400;
    text-decoration: none;
}

   #game-board {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  
  .letter-box {
    border: 2px solid gray;
    border-radius: 0px;
    margin: 2px;
    font-size: 2.5rem;
    font-weight: 700;
    height: 3rem;
    width: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
  }
  
  .filled-box {
    border: 2px solid black;
  }
  
  .letter-row {
    display: flex;
  }
  #keyboard-cont {
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  #keyboard-cont div {
    display: flex;
  }
  
  .second-row {
    margin: 0.5rem 0;
  }
  
  .keyboard-button {
    font-size: 1rem;
    font-weight: 700;
    padding: 0.5rem;
    margin: 0 2px;
    cursor: pointer;
    text-transform: uppercase;
  }  
  .download {
      width: 300px;
      height: 35px;
      background-color: #242222;
      border-radius: 5px;
      text-decoration: none;
  }
  .download a {
    width: 300px;
    height: 35px;
    background-color: #242222;
    border-radius: 5px;
    text-decoration: none;
}
   a {
       text-decoration: none;
       color: #149414;
   }
   button {
    appearance: auto;
    -webkit-writing-mode: horizontal-tb !important;
    text-rendering: auto;
    letter-spacing: normal;
    word-spacing: normal;
    line-height: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    display: inline-block;
    text-align: center;
    align-items: flex-start;
    cursor: default;
    box-sizing: border-box;
    margin: 0em;
    padding: 1px 6px;
    border-width: 2px;
    border-style: outset;
    border-image: initial;
    background-color: #FFF;
    color: #149414;
}
