* {
  font-family: 'Press Start 2P', cursive;
}

body {
  background-color: rgb(0, 0, 0);
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
}

.main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex: 1; 
}

.about, .error, .logo, .bandpic, .epk {
  width: 90%;      /* responsive */
  max-width: 600px; /* prevents over-expansion on large screens */
  margin: 0 auto;   /* center */
}

.epk {
  margin-top: 20px;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  display: block;
}

.epk, .epk * {
  font-family: "Courier New", Courier, monospace !important; /* or another web-safe font */
  letter-spacing: normal; /* optional: improves readability */
  line-height: 1;
}

.epk p {
  font-size: 20px;
}

.epk h1 {
  font-size: 24px;
  color: antiquewhite;
}

.epk h2 {
  margin-top: 50px;
  font-size: 20px;
  color: antiquewhite;
}

.epk h3 {
  margin-top: 10px;
  font-size: 18px;
  color: antiquewhite;
}

.bandpic {
  height: auto;
  max-height: 800px; /* <-- Prevents it from growing into the nav */
  object-fit: contain;
  display: block;
}

.logo {
  height: auto;
  max-height: 500px; /* <-- Prevents it from growing into the nav */
  object-fit: contain;
  display: block;
}

.album {
  max-height: 300px;
  align-items: center;
}

.album-container {
  margin: 20px 0px 20px 0px;
}

p {
  color: white;
  line-height: 2;
  letter-spacing: 4px;
}

.links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.links p {
  width: 100%;
}

nav {
  width: 100%;
}

nav ul {
  padding-left: 0;
  list-style: none;
  text-align: center;
}

nav li {
  display: inline-block;
  line-height: 80px;
  width: 20%;
}

nav a {
  color: #f528a9;
  font-size: 17px;
  padding: 10px 0;
  opacity: 80%;
}

nav a.selected {
  color: #f528a9;
  opacity: 80%;
}

li a:hover {
  cursor: pointer;
  background: #f461f2;
  color: rgb(255, 255, 255);
  transition: 0.5s;
}

nav li a {
  text-decoration: none;
  display: block;
  padding: 10px 0;
  color: white;
}

#check,
.checkbtn {
  display: none;
}

footer {
  font-size: 10px;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  margin-bottom: 10px;
}

iframe {
  width: 100%;
}

@media (max-width: 991px) {
  nav li {
    display: inline-block;
    line-height: 20px;
    width: 33%;
  }
}

@media (max-width: 500px) {
  .epk p { 
    font-size: 16px;
    line-height: 1.4;
  }
  .epk h1 { font-size: 18px; }
  .epk h2 { font-size: 18px; }
  .epk h3 { font-size: 16px; }

  /* --- Main container --- */
  .main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* start at top, don't vertically center */
    align-items: center;
    padding-top: 20px;           /* space below nav */
  }

  .logo {
    max-width:100%;
  }

  nav li {
    display: inline-block;
    line-height: 10px;
    width: 50%;
  }

  p {
    color: white;
    line-height: 1.5;
    letter-spacing: 2px;
  }

  footer {
    margin-top: auto;      /* push to bottom */
    padding: 10px 0;
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
  }
}
