body {
  margin: 0;
  font-family: "Segoe UI", "Roboto", sans-serif;
  background: linear-gradient(180deg, #1a0000 0%, #330000 100%);
  color: #f0f0f0;
  line-height: 1.6;
}

nav {
  background: #111;
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  border-bottom: 1px solid #222;
}

nav a {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  transition: color 0.2s;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #ff3c3c;
  transition: width 0.3s;
}

nav a:hover {
  color: #ff3c3c;
}

nav a:hover::after {
  width: 100%;
}

main {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 2rem;
  text-align: center;
}

h2 {
  font-size: 2.2rem;
  color: #ff3c3c;
  margin-bottom: 2rem;
  font-weight: 800;
}

.project {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
  transition: transform 0.3s, box-shadow 0.3s;
}

.project:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.project h3 {
  margin-top: 0;
  font-size: 1.6rem;
  color: #ff3c3c;
}

.project time {
  font-size: 0.95rem;
  color: #aaa;
  display: block;
  margin-top: 0.5rem;
}

footer {
  background: #0a0a0a;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #777;
  border-top: 1px solid #222;
}
