.controls-container {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  top: 0;
}

#guesstheword-start {
  font-size: 1.2em;
  padding: 1em 3em;
  background-color: #ffffff;
  border: none;
  outline: none;
  border-radius: 2em;
  cursor: pointer;
}

#guesstheword-letter-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8em 0.4em;
  justify-content: center;
  margin-top: 2em;
}

#guesstheword-letter-container button {
  background-color: rgb(68, 68, 68);
  border: 2px solid #26db47;
  color: #26db47;
  outline: none;
  border-radius: 0.3em;
  cursor: pointer;
  height: 3em;
  width: 3em;
}

#guesstheword-letter-container .correct {
  background-color: #008000;
  color: #ffffff;
  border: 2px solid #008000;
}

#guesstheword-letter-container .incorrect {
  background-color: #8a8686;
  color: #ffffff;
  border: 2px solid #8a8686;
}

.guesstheword-hint-ref {
  margin-bottom: 1em;
  text-align: center;
}

.guesstheword-hint-ref span {
  font-weight: 600;
}

#guesstheword-user-input-section {
  text-align: center;
}

#guesstheword-wordHint {
  text-align: center;
}

#guesstheword-chanceCount {
  margin: 1em 0;
  top: 0.62em;
  right: 2em;
  text-align: center;
}

#guesstheword-message {
  text-align: center;
}

#guesstheword-word {
  font-weight: 600;
  margin: 1em 0 2em 0;
}

#guesstheword-word span {
  text-transform: uppercase;
  font-weight: 400;
}

.guesstheword-wrapper {
  margin: 10px;
}

#guesstheword-result {
  text-align: center;
}

/*Phones*/
@media all and (min-width: 380px) and (max-width: 480px) {
  #guesstheword-start {
    font-size: 18px;
    padding: 25px 40px;
  }

  #guesstheword-letter-container button {
    border-radius: 0.3em;
    cursor: pointer;
    height: 2.5em;
    width: 2.5em;
  }
}

@media all and (max-width: 380px) {
  #guesstheword-start {
    font-size: 18px;
    padding: 25px 40px;
  }

  .guesstheword-wrapper {
    margin: 2px;
  }

  #guesstheword-letter-container button {
    border-radius: 0.3em;
    cursor: pointer;
    height: 2em;
    width: 2em;
  }
}
