* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, Helvetica, sans-serif;
  gap: 1rem;
  background: #242530;
  width: 100vw;
  height: 100vh;
}

i {
  font-size: 10rem;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

textarea {
  padding: 1rem;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background-color: transparent;
  color: white;
  border: 1px solid;
  border-radius: 10px;
  font-size: 1.1rem;
  height: 15rem;
  width: 25rem;
  outline: none;

  &::placeholder {
    color: #ddd;
    font-size: 1rem;
  }
}

#read {
  position: relative;
  padding: 0.5rem 1rem;
  font-size: 1.5rem;
  background-color: transparent;
  border: 1px solid;
  color: white;
  border-radius: 10px;
}

#read::after {
  content: "ALT + SHIFT + R";
  position: absolute;
  top: 5px;
  left: 10px;
  white-space: nowrap;
  color: #778;
  font-size: 10px;
}
