main {
  display: flex;
  flex-direction: column;
  min-height: 400px;
  width: 400px;
  background-color: #ffff80;
  border-radius: 10px;
  box-shadow: 2px 2px 4px;
}

.red-line {
  box-align: center;
  width: 95%;
}

.grey-line {
  box-align: center;
  width: 80%;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

.typing-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 1fr;
  height: 1fr;
  align-items: center;
  margin-top: 8px;
}

.text-box {
  padding: 10px 25px 10px 20px;
  margin: 20px 0px 20px 20px;
  border: none;
  border-radius: 20px;
  width: 280px;
  font-size: 18px;
  box-shadow: inset 1px 1px 5px rgba(0, 0, 0, 0.3);
  outline-color: #ff6666;
  outline-style: none;
}

.button-style {
  width: 90px;
  padding: 11px;
  background-color: #ff6666;
  border: none;
  border-radius: 0 30px 30px 0px;
  color: white;
  font-size: 17px;
  font-weight: bold;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
  position: relative;
  left: -20px;
  transition: background-color 150ms;
  text-shadow: 1px 1px 2px black;
  cursor: pointer;
}

.button-style:hover {
  background-color: #ff8080;
}

.button-style:active {
  box-shadow: none;
  background-color: #66666f;
}

#todo-list {
  margin: 10px 10px 10px 10px;
}

.checkbox-style {
  padding: 30px;
}
