* {
  margin: 0;
  box-sizing: border-box;
  font-family: "Coming Soon", monospace;
}

#root {
  height: 100vh;
  width: 100vh;
}

#letter-panel {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 20vw;
  padding-right: 5vw;
  background-color: #fafafa;
  border-right: 2px solid #cecece;
  overflow: auto;
  user-select: none;
}

.letter {
  font-weight: bolder;
  text-align: center;
  user-select: none;
}

.letter:hover {
  cursor: move;
}

.letter--template {
  font-size: 5rem;
  border: 3px solid blue;
  border-radius: 100%;
  width: 10vw;
  height: 10vw;
  line-height: 10vw;
  margin: 1rem auto;
}

.letter--placed {
  transform: translate(-50%, -50%);
  font-size: 12rem;
}

#clear {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 2.5rem;
  background-color: red;
  color: white;
  border: none;
  appearance: none;
  border-radius: 10px;
}

#recycle {
  position: absolute;
  bottom: 15px;
  right: 15px;
  height: 100px;
  width: 100px;
}
