* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f3f4f6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  min-height: 100vh;
  transition: background-color 0.5s ease-in-out;
}

#greet {
  font-size: 37px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1f2937;
  transition: color 0.5s ease-in-out;
  text-align: center;
}
#clock {
  font-size: 18px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 24px;
  transition: color 0.5s ease-in-out;
  text-align: center;
}

#quote {
  max-width: 672px;
  width: 100%;
  height: 100px;
  background-color: white;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
  font-size: 20px;
  font-style: italic;
  color: #374151;
  text-align: center;
}
.tasks {
  max-width: 672px;
  width: 100%;
  background-color: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
}
#taskList {
  list-style: none;
  margin-top: 16px;
  padding-left: 0;
}

#taskList li {
  background-color: #edeef0;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 8px;
  font-size: 16px;
  color: #111827;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.tasks h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1f2937;
  margin-top: 15px;
}

#taskInput {
  width: 80%;
  padding: 12px;
  font-size: 16px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  outline: none;
  transition: all 0.2s ease-in-out;
  height: 60px;
}

#taskInput:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3);
}

#addBtn {
  padding: 12px 24px;
  margin-left: 8px;
  height: 60px;
  width: 90px;
  background-color: #4f46e5;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#addBtn:hover {
  background-color: #4338ca;
}
