/* style.css — bahut simple */
:root{
  --primary: #2b6cb0;
  --muted: #f3f4f6;
  --text: #111827;
  --accent: #ffffff;
  --radius: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body{
  font-family: Arial, Helvetica, sans-serif;
  background: var(--muted);
  color: var(--text);
  line-height: 1.6;
  padding: 20px;
}

/* container to center content */
.container{
  max-width: 900px;
  margin: 0 auto;
  background: var(--accent);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* headings */
h1{
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--primary);
}

/* paragraph */
p { margin-bottom: 12px; }

/* simple button */
.button{
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.button:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(43,108,176,0.18);
}

/* small card */
.card{
  border: 1px solid #e6e9ef;
  padding: 16px;
  border-radius: 6px;
  background: #fff;
  margin-bottom: 12px;
}

