/* Reset */
body {
  margin: 0;
  padding: 0;
  font-family: "arial", monospace;
  background: #FFFFFF;
  color: #000000F;
  font-size: 30px; /* bigger base text */
  line-height: 1;
}


/* Headings */
h1 {
  color: #000000;
  font-size: 3.5em;
  text-align: center;
  margin: 0.1em 0;
}

h2 {
  color: #000000;
  font-size: 0em;
  margin-bottom: 0em;
}

h3  {
  color: #000000;
  font-size: 1em;
  margin-bottom: 0em;
}

.container {
  max-width: 800px;   /* adjust to your liking */
  margin: 0 auto;     /* centers the container */
  padding: 20px;      /* gives breathing room */
  text-align: left;   /* keeps text left aligned */
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  gap: 1px;
  padding: 0;
  margin: 10px 1;
  flex-wrap: wrap; /* keeps links from squishing */
}

nav ul li {
  margin: 0;
}

.art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* neat responsive columns */
  gap: 15px; /* space between images */
}

.art-grid img {
  width: 100%;            /* fill the grid cell */
  height: 200px;          /* fixed height for consistency */
  object-fit: cover;      /* crops images neatly without stretching */
  border-radius: 8px;     /* optional, for rounded corners */
}

nav a {
  text-decoration: none;
  font-size: 1em;
  padding: 1px 40px;
  color: #000000;
  border: 3px solid #666;
  border-radius: 32px;
  text-align: center;
  display: inline-block;
  transition: all 0.5s ease-in-out;

  /* Optional button background image */
  background: url('') repeat;
  background-size: cover;
}

nav a:hover {
  color: #ffcc00;
  border-color: #ffcc00;
  background-color: #FFFFFF; /* fallback hover if no image */
}

/* Content spacing */
main {
  margin-top: 20px;
  text-align: center;
}

/* Video — centered & responsive */
video, iframe {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16/9;   /* keeps it widescreen */
  border: 2px solid #444;
  border-radius: 4px;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 20px;
  font-size: 1em;
  color: #777;
}

/* -----------------
   MOBILE FIXES
------------------ */
@media (max-width: 600px) {
  body {
    font-size: 20px;
  }

  .container {
    max-width: 100%;     /* take full width */
    margin: 0;           /* no outer gap */
    border-left: none;   /* clean edge */
    border-right: none;
    border-radius: 0;
    padding: 16px;
  }

  h1 {
    font-size: 2.2em;
  }

  /* Video bigger on mobile */
  video, iframe {
    width: 100%;
    max-width: none;
    aspect-ratio: 16/9;
  }

  nav ul {
    flex-direction: column; /* stack links */
    gap: 6px;
  }

  nav a {
    display: block;
    font-size: 22px;
    padding: 1px;
    width: 100%;
    box-sizing: border-box;
  }
}
