@font-face{
      font-family: 'Rye';
      src: url('../fonts/Rye/Rye-Regular.ttf') format('truetype');
    }
    @font-face{
      font-family: 'Ewert';
      src: url('../fonts/Ewert/Ewert-Regular.ttf') format('truetype');
    }

    body {
      margin: 0;
      font-family: 'Times New Roman';
      background-image: url('../images/HomeBG2.jpg');
      background-color: #4d0000;
      background-size: cover;
      background-attachment: fixed;
      background-repeat: no-repeat;
      background-position: center;
      color: #f0f0f5;
    }

    header {
      background-color: #1a1a20;
      position: fixed;
      width: 97%;
      top: 0;
      left: 0;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 2px solid #3b3b47;
      z-index: 9999;
    }

    .logo {
      font-size: 1.5rem;
      color: #f75c5c; /* muted red */
    }

    nav {
      display: flex;
      gap: 1.2rem;
    }

    nav a {
      color: #9ad0ec; /* muted blue */
      text-decoration: none;
      font-size: 20px;
      padding: 1rem 1.25rem;
      border-radius: 5px;
      transition: background 0.3s, color 0.3s;
    }

    nav a:hover {
      background-color: #2a2a36;
      color: #ffffff;
    }

    .main-content {
        margin: auto;
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 20px;
        width: 1600px;
        height: 600px;
        background-color: #1a1a20;
        border-radius: 20px;
        border:solid 10px #65000b;
        box-shadow: 0 10px 4px rgba(0, 0, 0, 0.1);
    }

    .metallic-gold-button {
      background: linear-gradient(
        145deg,
        #5e493a,
        #a97441,
        #c49b6c,
        #8c6a43,
        #5e493a
      );
      background-size: 300% 300%;
      color: #1a1a1a;
      margin-top: 5rem;
      margin-left: auto;
      margin-right: auto;
      font-weight: bold;
      padding: 14px 28px;
      width: 300px;
      font-size: 18px;
      font-family: 'Rye';
      border: 1px solid #bfa046;
      border-radius: 10px;
      text-decoration: none;
      display: inline-block;
      box-shadow:
        inset 0 1px 3px rgba(255, 255, 255, 0.6),
        0 4px 10px rgba(0, 0, 0, 0.4);
      cursor: pointer;
      transition: background-position 0.5s ease, transform 0.2s ease;
    }

    .metallic-gold-button:hover {
      background-position: right center;
      transform: scale(1.05);
      box-shadow:
        inset 0 1px 4px rgba(255, 255, 255, 0.7),
        0 6px 12px rgba(0, 0, 0, 0.5);
    }

    .container {
      padding: 2rem;
      text-align: center;
    }

    .top-logo {
      margin-bottom: auto;
      margin-left: auto;
      margin-right: auto;
      margin-top: -10px;
      width: 500px;
      height: 400px;
      background-repeat: no-repeat;
    }

    .bottom-logo {
      margin-bottom: auto;
      margin-left: auto;
      margin-right: auto;
      margin-top: auto;
      width: 200px;
      height: 200px;
      background-repeat: no-repeat;
    }

    iframe {
      margin-top: 20px;
      margin-left: auto;
      margin-right: auto;
      display: block;
    }

    h1 {
      color: #f5f5f5;
      text-shadow: 6px 6px 12px #000000;
      font-size: 5rem;
      margin-top: -5rem;
      margin-bottom: 1rem;
      font-family: 'Rye';
    }

    h2 {
      color: #480607;
      text-shadow: 1px 1px 2px #CD9575;
      font-size: 5rem;
      margin-top: 5rem;
      margin-bottom: 1rem;
      font-family: 'Rye';

    }

    p {
      font-size: 1.2rem;
      line-height: 1.6;
      color: #ccc;
    }