/* Reset */
body, h1, h2, h3, p, ul {
  margin: 0;
  padding: 0;
}

/* General */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f4f4f4;
  color: #333;
}

/* Navigation */
nav {
  background: #222;
  padding: 10px;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}
nav ul li {
  margin: 0 15px;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
nav ul li a:hover {
  color: #00bcd4;
}

/* Sections */
section {
  padding: 40px;
  max-width: 800px;
  margin: auto;
}
section h2 {
  margin-bottom: 20px;
  border-bottom: 2px solid #00bcd4;
  display: inline-block;
}

/* Projects */
.project {
  margin-bottom: 20px;
}
.project h3 {
  margin-bottom: 5px;
}
.project a {
  color: #00bcd4;
  text-decoration: none;
}
.project a:hover {
  text-decoration: underline;
}
