* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #FFF;
  font-family: 'Courier New', Courier, monospace;
  overflow-y: scroll;
}

.container {
  min-width: 400px;

  margin: 10px;
}

.main-header {
  display: flex;
  justify-content: center; 

  padding: 20px 20px;

  background-color: #FFF;
}

.main-header-letter {
  display: flex;

  width: 3.5rem;
  height: 3.5rem;

  color: #6aaa64;

  font-size: 2.0rem;
  font-weight: 700;

  align-items: center;
  justify-content: center;

  text-transform: uppercase;
}

.top-banner {
  height: 50px;
}

.main-content {
  /* padding: 20px 20px; */
  margin-bottom: 10px;
  text-align: center;
}

.letter {
  width: 3.5rem;
  height: 3.5rem;

  color: #FFF;
  background-color: #6aaa64;
  border: 2px solid #6aaa64; 

  font-size: 1.125rem;
  font-weight: 700;

  text-align: center;
  text-transform: uppercase;
}

input:focus { 
  outline: none !important;
  border-color: #6aaa64;
}

.results {
  color: #6aaa64;
  margin-top: 2%;
  margin-left: 10%;
  margin-right: 10%;
}

.results p {
  text-align: center;

  font-size: 1.20rem;
  line-height: 1.5rem;
}


.main-excluded {
  /* padding: 20px 20px; */
  text-align: center;
}

.excluded-title {
  color: #94a3b8;
  font-size: 1.20rem;
  line-height: 1.5rem;

  margin-top: 15px;
  /* margin-bottom: 15px; */
 }
 
.excluded {
 color: #6aaa64;
}

.excluded-letters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  /* margin-top: 10px;
  margin-bottom: 10px; */

  height: 50px;
  margin-bottom: 10px;
 
  text-align: center;
}

.div-excluded-letter {
  display: flex;
  align-items: center;
  justify-content: center;
 
  /* text-align: center; */
}

.excluded-keyboard {
  display: none;
  margin-bottom: 5px;
}

.excluded-letter {
  display: flex;
  width: 1.75rem;
  height: 1.75rem;

  margin: 10px 10px;

  color: #FFF;
  background-color: #94a3b8;

  font-size: 1.125rem;
  font-weight: 700;
  align-items: center;
  justify-content: center;

  text-align: center;
  text-transform: uppercase;
}

.keyboard-row {
  display: flex; 
  justify-content: center; 
  margin-bottom: 0.25rem;
}

.keyboard-letter{
  display: flex; 
  align-items: center; 
  justify-content: center; 

  /* color: #FFF; 
  background-color: #6aaa64;  */
  color: #94a3b8; 
  background-color: #FFF; 
  border: 2px solid #94a3b8; 


  border-radius: 0.25rem; 
  margin-left: 0.125rem; 
  margin-right: 0.125rem; 

  width: 40px; 
  height: 58px;
}

.arrow {
  border: solid #94a3b8;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}


.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}