@font-face {
  font-family: Pixel Operator;
  src: url(assets/PixelOperator.ttf);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-size: 100%;
}

body {
  background-color: #0a0a0a;
  color: #ffffff;
  font-family: 'Pixel Operator', monospace;;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255, 255, 255, 0.005) 3px,
    rgba(255, 255, 255, 0.005) 6px
  );
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 2.5vh, 28px);
  padding: clamp(16px, 4vh, 48px) 24px;
  width: 100%;
  max-height: 100dvh;
  overflow-y: auto;
}

.photo-container {
  width: min(420px, 85vw);
  background-color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.poster-image{
  width: 400px;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.title {
  font-size: 1.1em;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.8);
  text-align: center;
  line-height: 1.5;
}

.menu {
  margin-top: -10px;
  display: flex;
  column-gap: clamp(12px, 4vw, 32px);
  row-gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}

a {
  color: rgb(24, 88, 207);
  text-decoration: none;
  font-family: 'Pixel Operator', monospace;
  font-size: 1em;
  transition: color 0.15s ease;
  
}

a:hover {
  color: #ffffff;
  overflow: hidden;
}

.menu a {
  letter-spacing: 2px;
}

p {
  margin-bottom: 1em;
  margin-top: 1em;
}

.narrow {
  max-width: 600px;
}

.image-double {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.image-double img {
  flex: 1;
  min-width: 0;
  height: auto;
  object-fit: cover;
}

.footer {
  border-top: solid 1px #aaa ;
  color: #aaa
}

@media (max-width: 768px) {
  html, body {
    font-size: 110%;
  }
  .narrow{max-width: 100%;}
  .image-double{flex-direction: column;}
}
