body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(90deg, #1cb5e0 0%, #000851 100%);
  color: #fff;
}

h1 {
  text-align: center;
  font-weight: 700;

  margin-bottom: 40px;
}

h2 {
  color: #000;
}

h3 {
  color: #000;
}

p {
  color: #000;
}

section {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

section:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

button {
  border-radius: 50px;
  padding: 10px 25px;
  font-weight: 600;
  transition: transform 0.2s ease;
}

button:hover {
  transform: scale(1.05);
}

/* linear-gradient(90deg, #FC466B 0%, #3F5EFB 100%) */
#thingsList li {
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 15px 20px;
  background: linear-gradient(90deg, #0700b8 0%, #3f5efb 100%);
  color: #fff;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

#thingsList li:hover {
  background: linear-gradient(90deg, #3f5efb 0%, #0700b8 100%);
}

#userDetails {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

hr {
  border-top: 2px dashed #bbb;
  margin: 40px 0;
}
