/* Universal, simplified CSS — no CSS variables required */

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: #0b5394;
  color: #0f172a;
  line-height: 1.6;
  padding: 40px 20px;
  max-width: 1720px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Headings */
h1 {
  font-size: 2rem;
  margin-bottom: 0.5em;
  color: lightgray;
}

h2 {
  font-size: 1.2rem;
  margin-top: 2em;
  color: lightgray;
}

/* Paragraphs and lists */
p {
  margin: 0 0 1em 0;
  color: white;
}

ul {
  list-style: disc;
  margin-left: 1.5em;
  margin-bottom: 1em;
}

li {
  margin: 0.4em 0;
  color: white;
}

/* Links */
a {
  color: #7098ee;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  text-decoration: underline;
}

/* Project link styling */
ul li a {
  display: inline-block;
  padding: 4px 8px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 6px;
}

/* Image */
img {
  max-width: 150px;
  height: auto;
  margin-top: 1.5em;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
}

/* Contact links */
ul:last-of-type {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin-left: 0;
}

ul:last-of-type li {
  margin: 0;
}

/* Simple card container (optional)
   Wrap all your content in <div class="card"> ... </div> if you want a boxed layout */
.card {
  background: #073763;
  border: 1px solid #000000;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  padding: 30px;
}
