* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  margin: 0;
  line-height: 1.6;
}

nav {
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: #111;
  color: white;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

nav a {
  color: white;
  text-decoration: none;
}

.hero {
  display: flex;
  align-items: center;
  padding: 2rem;
  gap: 2rem;
  background: #f4f4f4;
}

.hero img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #ccc;
}

section {
  padding: 2rem;
}

.project {
  border: 1px solid #ddd;
  padding: 1rem;
  margin-bottom: 1rem;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #111;
  color: white;
}
