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

/* Page background */
body {
  background: black;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
}

/* Bounding box */
.frame {
  position: relative; 
  background: black;
  border: 2px solid white;
  padding: 40px;
  width: 600px;
  max-width: 90%;
  text-align: center;
  overflow: hidden;
}

/* ASCII logo */
.ascii {
  color: white;
  font-size: 14px;
  line-height: 1.1;
  white-space: pre;
  margin-bottom: 40px;
}

/* Navigation */
.nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

/* Title */
.title {
  color: white;
  font-size: 40px;
  font-weight: normal;
  letter-spacing:20px;
  margin-bottom: 30px;
  font-weight: 700;
  font-family: monospace;
}

/* Scanline overlay */
.frame::after {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.09) 1px,
    transparent 1px,
    transparent 5px
  );

  z-index: 2;
}

.nav a {
  color: white;
  text-decoration: none;
  border: 2px solid white;
  padding: 6px 14px;
  font-size: 18px;
  font-weight: 600;
}

.nav a:hover {
  background: white;
  color: black;
}
