/*h1 {
 text-align: center;
}*/
#main {
  /*border: 1px dotted black;*/
  display: flex;
  justify-content: center; /* Vertical align the elements to the center */
  position: relative;
}
#overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color:white;
  z-index: 2;
  justify-content: center;
  cursor: pointer;
  align-items: center;
  font-family: Arial;
}
h1 {
  text-align: center;
}
canvas{
  margin: 0 auto;
}
.overlay-content {
  position: relative;
  /*top: 25%;*/
  width: 100%;
  text-align: center;
  font-weight: bold;
  margin-top: 30px;
  font-family: Arial;
}
.header_container {
  display: flex;
  justify-content: center;
  /*justify-content: space-between;*/
  align-items: center;
  position: relative;
  font-family: Arial;
}
.navbtns {
  display: flex;
  list-style: none;
}
#header {
  display: flex;
  flex-direction: column;
}
#help-button {
  display: flex;
  align-self: right;
  flex-direction: column;
  font-size:large;
}
#game-board {
    display: flex;
    align-items: center;
    flex-direction: column;
    font-family: Arial;
}
#choose-two {
    display: flex;
    align-items: center;
    flex-direction: column;
}

#daily-letters {
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size: large;
    font-family: Arial
}

#try-button {
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size:large;
    font-family: Arial;
}
#closestat {
  position: relative;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
  .help-button {
    display: flex;
    align-self: right;
    flex-direction: column;
    font-size:large;
  }
  .letter-box {
    border: 2px solid gray;
    border-radius: 3px;
    margin: 2px;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: Arial;
    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;
  }
  .try-letter-box {
    border: 2px solid gray;
    border-radius: 3px;
    margin: 2px;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: Arial;
    height: 3rem;
    width: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
  }
  
  .try-filled-box {
    border: 2px solid black;
  }
  
  .try-letter-row {
    display: flex;
  }
  /*
  #keyboard-cont {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink 0;
  }
  */
  #keyboard-cont {
    -webkit-appearance: none;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink 0;
  } 
  #keyboard-cont div {
    display: flex;
  }
  
  .second-row {
    margin: 0.5rem 0;
  }
  /*
  .keyboard-button {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    font-size: 1rem;
    font-weight: 700;
    padding: 0;
    cursor: pointer;
    flex-shrink 0;
    text-transform: uppercase;
  }
  */
  .keyboard-button {
    -webkit-appearance: none;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.5rem;
    margin: 0 2px;
    cursor: pointer;
    text-transform: uppercase;
    flex-shrink: 0
  }