/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


.overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  color: white;
  font-family: sans-serif;
  background: rgba(0,0,0,0.5);
  padding: 10px;
}
@font-face 
{ 
  font-family: 'discotech'; 
src: url('/fonts/DISCOTEC.ttf') format('truetype');
font-weight: normal; 
font-style: normal; 
} 

@font-face 
{ 
  font-family: 'twenty'; 
src: url('/fonts/2025.ttf') format('truetype');
font-weight: normal; 
font-style: normal; 
} 


@font-face 
{ 
  font-family: 'trog';
  src: url('/fonts/TROGLO__.ttf') format('truetype'); 
  font-weight: normal; font-style: normal;
  } 
  
  body 
  { 
    text-align: center; font-family: "Courier New", monospace;
    font-style: italic; 
    font-size: 16px; 
    color: #FFFFFF; 
    background-color: #000000; /* set your background here */ 
    }
    
    h1 
    { 
      text-align: center;
      font-family: 'discotech', "Courier New", monospace;
      font-size: clamp(24px, 5vw, 48px);
      
      }
      
      h2 
      { text-align: center;
      font-family: 'discotech', "Courier New", monospace;
      font-size: clamp(24px, 5vw, 48px);
      }
      
      h3 
      { 
        text-align: center; font-family: "Courier New", monospace;
        font-style: italic;
        font-size: clamp(24px, 5vw, 48px);
        color: #F54927; } a:link 
        {
          text-align: center;
          font-family: "Courier New", monospace;
          font-style: italic; font-size: clamp(24px, 5vw, 48px); color: #F54927; 
          }
          a:visited 
          {
            text-align: center; font-family: "Courier New", monospace;
            font-style: italic; 
            font-size: 16px; 
            color: #8C1900;
            }
      h4
      { 
        text-align: center; font-family: "twenty", monospace;
        font-style: italic; 
            font-size: 100px; 
            color: #8C1900;
            }    
   html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}
}
@media (max-width: 600px) {
  .top-nav {
    flex-direction: column;  /* stack links vertically */
    align-items: center;
    gap: 10px;
    padding: 15px 0;
  }

  .top-nav a {
    font-size: 14px; /* slightly larger for tapping */
    padding: 10px 15px;
  }
}
