body {
  text-align: center;
  font-family: Arial, sans-serif;
  margin: none;
}

header {
  background: #e4e4e4;
  position: fixed;
  right: 0px;
  left: 0px;
  top: 0;
}

main {
  padding: 30vh 10vw;
}

label {
  font-weight: bold;
  font-size: 1.2rem;
}

#input-text {
  font-size: 1rem;
  font-family: Arial, sans-serif;
  width: 100%;
  height: 150px;
  margin: 15px auto;
  padding: 20px;
  border: 2px solid;
  background: #f3f3f3;
  border-radius: 20px;
}

#input-text:focus {
  background: #e4e4e4;
  box-shadow: 0 0 10px black inset;
}

#spell-check-button {
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 10px;
  font-weight: bold;
  background: #6db1ff;
}

#add-to-dictionary {
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 10px;
  background: #83fd9d;
}

.btn:hover {
  cursor: pointer;
  box-shadow: 0 0 5px black;
}

.misspelled {
  color: rgb(252, 73, 73);
  font-weight: bold;
  margin: 20px;
}

.message {
  margin-top: 20px;
}

footer {
  position: fixed;
  bottom: 0;
  right: 0px;
  left: 0px;
  background: #e4e4e4;
}

a {
  text-decoration: none;
  color: #000000;
}