hr {
  width: 500px;
}

h1 {
  margin-left: 47%;
  margin-top: 1%;
  font-family: sans-serif;
}

.tile {
  /* Box */
  border: 2px solid lightgray;
  width: 120px;
  height: 60px;
  margin: 2.5px;
  background-size: 70px;
  background-position: center;
  /* Text */
  color: black;
  font-size: 24px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
}
.name {
  width: 240px;
}
.team {
  width: 175px;
}
.role{
  width:200px;
  font-size: 20px;
}
.batting-hand{
  width:120px;

}


#guesses {
  width: 900px;
  height: 420px;
  margin: 0 auto;
  margin-top: 3px;
  display: flex;
  flex-wrap: wrap;
}
#titles{
  width: 950px;
  margin: 0 auto;
  margin-top: 3px;
  display: flex;
  flex-wrap: wrap;
  font-family:sans-serif;
  font-weight: bold;
}

input {
  width: 150px;
  height: 30px;
  margin-top: 3px;
}

#user-guess {
  margin-left: 40%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 2%;
  margin-bottom: 2%;
}
.correct {
  background-color: #6aaa64;
  color: white;
  border-color: white;
}

.present {
  background-color: #c9b458;
  color: white;
  border-color: white;
}

.absent {
  background-color: #787c7e;
  color: white;
  border-color: white;
}

.hidden{
  visibility: hidden;
}