/* my code for the about page
*/


  @font-face {
    font-family: 'SuperCorn';
    src: url('https://maber.neocities.org/fonts/Tvcd.ttf') format('truetype');
  }
  


  body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
    font-family: 'SuperCorn', sans-serif;
    letter-spacing: 1.5px;
    background-color: #13213e;
    color: white;
  }

  .animated-background {
    display: none; /* hide old background animation */
  }

  .page-wrapper {
    max-width: 900px;
    margin: 20px auto;
    background: linear-gradient(to bottom, #9e4b2c, #13213e);
    padding: 20px;
    border: 1px solid #13213e;
  }

  .banner {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 15px;
    
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    padding: 8px 10px;
    background: #13213e;
    border: 1px solid #13213e;
    margin-bottom: 20px;
  }

  nav a {
    flex: 1 1 120px;
    max-width: 150px;
    text-align: center;
    padding: 10px 15px;
    text-decoration: none;
    color: white;
    background: #9e4b2c;
    font-weight: bold;
    border: 1px solid #13213e;
    text-shadow: none;
    box-shadow: none;
  }

  h1 {
    text-align: center;
    margin: 30px 0;
    font-style: italic;
    background-color: #13213e;
    padding: 15px;
    border: 1px solid #13213e;
  }

  .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 0;
    color: white;
  }

  .whats-new {
    flex: 1 1 200px;
    height: 300px;
    background-color: #444;
    border: 1px solid #666;
    display: flex;
    flex-direction: column;
    border-radius: 0;
    background-image: none;
    padding: 10px;
  }

  .whats-new-title {
    font-size: 1.4em;
    font-weight: bold;
    padding-bottom: 10px;
    border-bottom: 1px solid #13213e;
  }

  .whats-new-title a {
    color: white;
    text-decoration: none;
  }

  .whats-new-scroll {
    overflow-y: auto;
    flex: 1;
    padding: 0;
    font-size: 1em;
    line-height: 1.6em;
    color: white;
  }

  .main-text {
    flex: 2 1 300px;
    background-color: #13213e;
    border: 1px solid #13213e;
    padding: 15px;
  }

  .main-text p {
    color: white;
    text-shadow: none;
  }

  .character-img {
    flex: 1 1 200px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .character-img img {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  footer {
    text-align: center;
    padding: 30px 10px 10px 10px;
    margin-top: 20px;
  }

  footer p {
    font-size: 0.9em;
    margin: 0 auto;
    max-width: 600px;
    color: white;
    text-shadow: none;
  }

  footer img {
    display: block;
    margin: 0 auto 10px auto;
    max-width: 200px;
    width: 100%;
    height: auto;
  }

  @media (max-width: 768px) {
    nav a {
      flex: 1 1 45%;
    }
  }


.simple-link:hover {
  border-bottom: 2px solid currentColor;
}

.animated-background {
  display: none;
}

@media (max-width: 768px) {
  .main-columns {
    flex-direction: column;
  }

  nav a {
    flex: 1 1 45%;
  }
}

/* WebKit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 16px;
}

::-webkit-scrollbar-track {
  background: #13213e; /* dark background */
}

::-webkit-scrollbar-thumb {
  background-color: #9e4b2c; /* orange-brown scrollbar handle */
}

/* Optional: arrows */
::-webkit-scrollbar-button {
  background-color: #9e4b2c;
}

/* Firefox only */
* {
  scrollbar-width: auto;
  scrollbar-color: #9e4b2c #13213e;
}

.inline-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0 10px;
}

.inline-heading img {
  height: 40px;
  width: auto;
}

