/* Base reset */
body {
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: #111;
}

/* Navigation */
.topnav {
  display: flex;
  justify-content: space-between;
  padding: 16px 32px;
}

.topnav a {
  text-decoration: none;
  font-weight: 600;
  color: #111;
}

.topnav a:hover {
  opacity: 0.6;
}

/* Hero section */
.home {
  text-align: center;
  padding: 80px 20px 40px;
}

h1 {
  font-size: 40px;
  margin-bottom: 8px;
}

.headline {
  font-size: 16px;
  color: #555;
  margin-bottom: 24px;
}

/* Profile image */
#profile_pic {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

/* Snapshot */
.snapshot {
  text-align: center;
  font-size: 14px;
  color: #555;
  padding: 20px;
}

/* Social links */
.social-items {
  text-align: center;
  padding: 24px 0;
}

.social-items a {
  margin: 0 10px;
  font-size: 28px;
  color: #111;
}

.social-items a:hover {
  opacity: 0.6;
}

/* Footer */
.footer {
  text-align: center;
  padding: 10px 20px;
}

.footer span {
  font-weight: 400;
  color: #555;
}

/* CSS FOR PROJECTS HTML CODE */

.projects {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 20px;
}
.headline-projects {
  text-align: center;
  font-weight: bold;
}
.project-card {
  margin-bottom: 32px;
}

.project-card h2 a {
  text-decoration: none;
  color: #111;
  font-weight: bold;
}

.project-card h2 a:hover {
  opacity: 0.7;
}

.tools {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.muted {
  opacity: 0.7;
}
