body {
  background-color: #000;
  color: #ccc;
  font-family: 'Source Code Pro', monospace;
  padding: 40px;
  line-height: 1.6;
}
a {
  color: #00ffff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
h1 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
hr {
  border: 1px solid #444;
  margin: 20px 0;
}
.section {
  margin-bottom: 30px;
}
.section-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
}
.nav {
  position: absolute;
  right: 40px;
  top: 40px;
}
.nav a {
  margin-left: 15px;
}

.header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.header-bar h1 {
  margin: 0;
}

.nav {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: flex-end;
}



.item {
  margin: 6px 0;
}
.project-title {
  color: #00ffff;
}


@media (max-width: 600px) {
  body {
    padding: 20px;
    font-size: 0.9rem;
  }
  .nav {
    position: static;
    text-align: center;
    margin-bottom: 20px;
  }
}

@media (max-width: 400px) {
  .header-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}
