body {
  font-family: "DM Sans", sans-serif;
  background: linear-gradient(135deg, #fbc2eb, #a6c1ee);
  min-height: 100vh;
}

/* центр */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* заголовок */
.title {
  text-align: center;
  font-size: 48px;
  margin-bottom: 40px;
  color: #3a2c5a;
}

/* список */
.tasks {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* карточка */
.task {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ffffffcc;
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

/* hover ефект */
.task:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* номер */
.task-number {
  font-size: 20px;
  font-weight: bold;
  background: linear-gradient(135deg, #ff7eb3, #ff758c);
  color: white;
  padding: 12px 16px;
  border-radius: 10px;
}

/* текст */
.task-content h3 {
  margin-bottom: 5px;
}

.task-content p {
  color: #555;
  font-size: 14px;
}

/* кнопка */
.btn {
  margin-left: auto;
  padding: 10px 18px;
  background: linear-gradient(135deg, #ff7eb3, #ff758c);
  color: white;
  border-radius: 8px;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}
