body {
  font-family: sans-serif;
}

#outer_wrapper {
  display: flex;
  flex-direction: column;
  margin: auto;
  align-items: center;
  padding-top: 100px;
}

#board {
  border: 1px solid black;
  width: 600px;
  height: 350px;
  border-radius: 8px;
  box-shadow: rgb(136 136 136) 0px 2px 4px;
  overflow-y: scroll;
  padding-left: 16px;
  padding-right: 16px;
  overflow-y: scroll;
}

#name_wrapper {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 0px;
}

#button {
  font-size: 20px;
  padding: 5px 13px;
}

#input {
  font-size: 20px;
}

#input_wrapper > * {
  margin-left: 5px;
  margin-right: 5px;
}

.name {
  width: 110px;
  height: 80px;
  border: 1px dashed black;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  margin-top: 3px;
  margin-bottom: 3px;
}

.name:hover {
  background-color: rgb(230, 230, 230);
}
