/** Write your CSS in here **/
body {
  font-family: Arial, sans-serif;
  background: #f5f7fa;
  margin: 0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  color: #333;
  margin-bottom: 20px;
}

#quote {
  font-size: 1.4rem;
  font-style: italic;
  color: #444;
  margin: 20px 0 5px;
  max-width: 600px;
  text-align: center;
}

#author {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 20px;
}

button {
  background: #0078ff;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 10px;
}

button:hover {
  background: #005fcc;
}

input {
  padding: 10px;
  margin: 5px 0;
  width: 250px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

#add-status {
  margin-top: 10px;
  font-weight: bold;
  color: green;
}
