html, body {
  height: 100%;
  width: 100%;
}

body {
  display: flex;
  justify-content: center;
}
.pangram-definition-container {
  margin: 10px;
}
.pangram-title {
  font-size: 36px;
  font-weight: bold;
}
.pangram-pronunciation {
  font-size: 24px;
}
.pangram-pos {
  font-style:italic;
}
.pangram-container {
  margin-top: 100px;
  max-width: 100vw;
}

.used-letters {
  margin-top: 20px;

}

.word-bank-letter, .used-letter-container {
  padding: 5px 8px;
  border: 1px solid black;
  display: inline-block;
}

.used-letter-container {
  position: relative;
}

.used-letter-count {
  font-size:10px;
  bottom: 15px;
  left: 15px;
  position: absolute;
}

.pangram-input {
  margin-top: 15px;
}
.caret-input {
  vertical-align: middle;
  height:20px;
  width:20px;
}
#pangrammer {
  width: 630px;
  font-size: 20px;
  padding: 0px 10px;
  border: 3px solid blue;
  height: 40px;
  border-radius: 10px;
}

#pangrammer:focus {
  outline: none;
}

@media only screen and (max-width: 630px) {
  #pangrammer {
    width: 85vw;;
  }
}
