:root {
    --bg-color: #000B00;
    --accent-color: #111B11;
    --text-color: #f7f7f7;
    --brand-color: #5aa618;
    --brand-accent: #005a00;
    --highlight-color: #7fe02a;
    --clicked-color: #bbbbbb;
  }
  
   html, body {
      margin: 0;
      padding: 0;
      overflow-x: hidden;
      font-family: Arial, sans-serif;
      background-color: var(--bg-color);
      width: 100%;
    }
  
    @font-face {
      font-family: irishFont;
      src: url(irish_font.ttf);
  }
    
    main {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin: 0 auto;
    }
  
    .list-content {
      align-self: center;
      width: 80vw;
    }
  
    .list-content a {
      color: var(--brand-color);
      transition: color 0.2s ease, transform 0.3s ease;
      margin: 5px;
      padding-bottom: 5px;
    }
  
    .list-content h2 {
      color: var(--text-color);
      justify-self: center;
      text-align: center;
      font-family: irishFont;
      font-size: 6vh;
    }
  
    .state-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 0.5rem; /* space between rows and columns */
      text-align: center;
      margin-bottom: 10vh;
    }
    
    .state-list a {
      display: inline-block;
      background-color: var(--accent-color);
      color: var(--text-color);
      padding: 0.75rem 10px;
      border-radius: 12px;
      text-decoration: none;
      width: 100%; /* make them fill the column */
      box-sizing: border-box;
      transition: background-color 0.3s, transform 0.3s;
    }
    
    .state-list a:hover {
      background-color: var(--brand-color);
      transform: scale(1.03);
    }
  
    a {
      color: var(--highlight-color);
    }
  
    a:visited {
      color: var(--clicked-color);
    }
  
    .about-content {
        width: 90%;
        margin: 0 auto;
    }

    .hero-section h1 {
        color: var(--text-color);
        font-family: irishFont;
        justify-self: center;
    }


    p {
      color: var(--text-color);
    }
    
    @media only screen and (max-width: 768px) {
      .list-content h2 {
        font-size: 20px;
      }
  
      .state-list {
          text-align: center;
          gap: 10px;
        }
  
        .section-lists {
          display: flex;
          justify-content: space-between;
          flex-wrap: wrap;
          gap: 2rem;
        }
        
        .section-lists ul {
          flex: 1 1 30%;
          list-style: none;
          padding-left: 0;
        }
        .section-lists li {
          margin: 0.25rem 0;
        }
  
        .container {
          flex-direction: column;
      }
  
      .list-content a {
        transition: color 0.2s ease, transform 0.3s ease;
        margin: 5px;
        padding-bottom: 5px;
      }
    }