        .metal-mania-regular {
            font-family: "Metal Mania", system-ui;
            font-weight: 400;
            font-style: normal;
        }

        .barlow-condensed-bold {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
}
        
        * {
            --bg-color: #3a000a;
            --header-text-color: #ffcd69;
            --subheader-text-color:#c9ac73;
            --text-color: #e0e0e0;
            --hover-color: #dd0000;
            --footer-text-color: #ffcd69;
        }
        
        body {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            max-width: 100%; 
            background-color: var(--bg-color);
            color: var(--text-color); font-family: 'Segoe UI', sans-serif;
            line-height: 1.6;
            margin: 0;
            text-align: justify;
              font-family: "Barlow Condensed", sans-serif;
        }

        main {
            flex: 1;
        }

        .container {
            max-width: 800px;
            margin: auto;
            padding: 25px 13px;
        }

        h1 {
            color: var(--header-text-color);
            font-family: "Metal Mania", system-ui;
            font-weight: 400;
            font-style: normal;
            font-size: 45px;
            text-align: center;
            padding: 0px;
            line-height: 50px;
        }

        h2 {
            color: var(--subheader-text-color);
            font-size: 1.2em;
        }

        #about-us-h2 {
            text-align: center;
        }

        .highlight {
            color: var(--header-text-color);
            font-weight: bold;
        }

        article {
          background: #1a1a1a;
          padding: 20px;
          margin: 0;
          border-radius: 8px;
          border: 1px solid #333;
        }

        footer {
            text-align: center;
            padding: 40px 20px;
            background: #1a1a1a;
            border-top: 1px solid #333;
            display: flexbox;
        }

        footer a {
            color:  var(--text-color);
            text-decoration: none;
            margin: 0 10px;
            transition: 0.3s;
        }

        footer a:hover {
            color: var(--hover-color);
        }