/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth; /* smooth scrolling to anchors */
}

body {
  font-family: 'Courier New', monospace;
  font-size: 16px;  /* 80% of 20px */
  background: #ffffff;
  color: #000000;
  line-height: 1.6;
}

/* Special pixel font just for titles */
.project-title,
.section-title,
.sidebar-title {
  font-family: 'Press Start 2P', monospace;
}

/* Layout */
.container {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 224px; /* 80% of 280px */
  background: #f5f5f5;
  border-right: 2.4px solid #000;
  padding: 16px; /* 80% of 20px */
  position: fixed;
  height: 100vh;
  overflow-y: auto;
}

.sidebar-title {
  font-size: 0.96em; /* 80% of 1.2em */
  font-weight: bold;
  margin-bottom: 16px;
  text-align: center;
  border-bottom: 1.6px solid #000;
  padding-bottom: 8px;
  text-transform: uppercase;
}

.nav-item {
  display: block;
  padding: 12px 8px; /* 80% */
  margin: 4px 0;
  border: 1.6px solid #000;
  background: #fff;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  transition: all 0.3s ease;
}

.nav-item:hover {
  background: #000;
  color: #fff;
  transform: translateX(8px); /* 80% of 10px */
}

/* Main content */
.main-content {
  margin-left: 224px; /* match sidebar */
  flex: 1;
  padding: 24px; /* 80% of 30px */
}

.header {
  text-align: center;
  margin-bottom: 40px; /* 80% */
  border: 2.4px solid #000;
  padding: 24px; /* 80% */
  background: #f9f9f9;
}

.project-title {
  font-size: 1.6em; /* 80% of 2em */
  font-weight: bold;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 2.4px;
}

.ascii-car {
  font-family: monospace;
  font-size: 24px; /* 80% of 30px (and fixed typo from 30x) */
  text-align: center;
  line-height: 1;
  white-space: pre;
  margin: 16px 0;
  color: #000;
}

/* Sections */
.section {
  margin-bottom: 64px; /* 80% */
  padding: 24px; /* 80% */
  border: 1.6px solid #000;
  background: #fff;
  scroll-margin-top: 16px;
}

.section-title {
  font-size: 1.2em; /* 80% of 1.5em */
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  border-bottom: 1.6px solid #000;
  padding-bottom: 8px;
}

.section-list {
  padding-left: 40px; /* 80% of 50px */
}

.gallery {
  display: flex;
  justify-content: center;
  gap: 40px; /* 80% of 50px */
  flex-wrap: wrap;
}

.gallery figure {
  text-align: center;
}

.gallery img {
  width: 500px; /* 80% of 500px */
  border: 1.6px solid #000;
  border-radius: 4.8px;
}