body {
  margin: 0;
  background-color: #0e0e0e;
  color: #f0f0f0;
  font-family: Arial, sans-serif;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: #121212;
  border-bottom: 1px solid #222;
}

.logo-wrapper {
  display: flex;
  align-items: center;  /* This centers the logo + text vertically */
}

.logo-link {
  display: flex;
  align-items: center;  /* This centers logo and text */
  gap: 0.5rem;
  text-decoration: none;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffffff;
  line-height: 1; /* Ensures the text doesn't shift vertically */
}

.navbar img {
  height: 40px;
  filter: invert(1); /* Make logo white */
}

.navbar a {
  color: #f0f0f0;
  text-decoration: none;
  font-size: 1rem;
  margin-left: 2rem;
}

.container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

h2 {
  border-bottom: 1px solid #333;
  padding-bottom: 0.5rem;
}

a {
  color: #76c7ff;
}

.project {
  margin-bottom: 1.5rem;
}