@font-face {
  font-family: 'Iosevka NF';
  src: url('../fonts/IosevkaNerdFontMono-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
}
body {
  font-family: 'Iosevka NF', 'Courier New', monospace;
  background-color: #B3B2B2;
  color: #282828;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
}
.hero-image {
  width: 100vw;
  max-width: none;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-top: 2rem;
  margin-bottom: 2rem;
  border: none;
  border-top: 1px solid #282828;
  border-bottom: 1px solid #282828;
}
.hero-image:hover {
  opacity: 1;
}
.image-caption {
  font-size: 12px;
  opacity: 0.5;
  text-align: center;
  margin-top: -1rem;
  margin-bottom: 2rem;
}
h1 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
}
p {
  margin-bottom: 1rem;
}
a {
  color: #282828;
  text-decoration: none;
  border-bottom: 1px solid #282828;
  transition: border-color 0.2s ease;
}
a:hover {
  border-bottom-color: #D83933;
}
.accent {
  color: #D83933;
  font-weight: bold;
}
.divider {
  border: none;
  border-top: 1px solid #282828;
  margin: 2rem 0;
  opacity: 0.3;
}
section {
  margin-bottom: 3rem;
}
.section-title {
  font-size: 16px;
  margin-bottom: 1rem;
  font-weight: 600;
}
footer {
  margin-top: 4rem;
  font-size: 14px;
  opacity: 0.7;
}
@media (max-width: 768px) {
  body {
    padding: 1rem;
  }
  h1 {
    font-size: 20px;
  }
}
