body {
  background-color: black;
  color: aliceblue;
}
#main {
  width:28rem;
  margin: auto;
  display:flex; 
  flex-direction: column;
  /* justify-content: center; */

}

#nav {
  /* height:60px; */
  margin-bottom: 10px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 0 50px;
  /* border: 1px solid red; */
}

#menu {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
}

#menu button {
  cursor: pointer;
}

.btn img {
  height:40px;
  width:40px;
}

#stgs {
  margin-top: 5px;
}

.modal-content {
  background-color: rgb(144, 182, 252);
  color:black
}

.btn-primary {
  background-color: rgb(16, 16, 138);
}

#dark {
  display: none;
  color: rgb(17, 2, 41)
}

.modal small {
  color:rgb(177, 174, 174);
}

#msg {
  color: rgb(112, 8, 8);
  height:40px;
  display: flex;
  justify-content: center;
}

#verNo {
  color:black;
}

#changelog {
  font-size: .8em;
}

#words {
  /* height:500px; */
  margin: auto;
  display:flex;
  flex-flow: column nowrap;
  /* justify-content: center; */
  /* border: 1px solid yellow; */
}

.word {
  /* border: 1px solid rgb(42, 120, 165); */
  justify-content:flex-start;
  display: flex;
  margin-top: -10px;
}

.letterbox {
  height: 60px;
  width: 60px;
  border: 1px solid grey;
  border-radius: 12px;
  margin: 4px;
  font-size: 44px;
  text-align: center;
}

.selectedLetter {
  border: 1px solid rgb(96, 165, 211)
}

#shouldbeaword {
  border-radius: 10px;
  background-color: rgb(3, 110, 149);
  font-size: 1.3em;
  color:rgb(61, 2, 14);
  font-weight: 600;
  width: 100%;
  margin-top: 20px;
  display: none;  
}

#keyboard {
  margin-left: 32px;
  display:flex;
  flex-flow: column nowrap;
}

.kbRow {
  display:flex;
  flex-flow: row nowrap;
}

.letter {
  height: 38px;
  padding: 4px 0;
  width: 32px;
  border-radius: 4px;
  margin: 4px;
  font-size: 20px;
  display: inline-block;
  text-align: center;
  background-color: rgb(51, 51, 51);
  user-select: none;
}

.letter:hover {
  background-color: rgb(31, 31, 31);
}

.letter:active {
  color: rgb(136, 134, 134);
}

.long {
  width: 50px;
}

#row2 {
  padding-left: 15px;
}

#row3 {
  padding-left: 30px;
}

.wrongplace {
  background-color: rgb(150, 135, 4);
}

.rightplace {
  background-color: rgb(5, 126, 51);
}

.guessed {
  background-color: rgb(19, 19, 19);
  color:rgb(100, 99, 99);
}
