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

/* Page setup */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Ubuntu, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #222;
  padding: 20px;
}

/* Header */
header {
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: center;
}

header h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.1rem;
  color: #555;
}

/* Main content */
main {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
}

/* Sections */
section {
  margin-bottom: 30px;
}

section h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  border-bottom: 2px solid #eee;
  padding-bottom: 5px;
}

/* Skills list */
.skills {
  list-style-type: disc;
  padding-left: 20px;
}

.skills li {
  margin-bottom: 6px;
}

/* Links */
a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  max-width: 800px;
  margin: 30px auto 0 auto;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}


