   body {
      margin: 0;
      background-color: #1c1c1c;
      font-family: 'Black Ops One', sans-serif;
      color: orange;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;               /* ✅ Ensures it fits at least the viewport */
      padding: 2rem 1rem;              /* ✅ Adds breathing room on small screens */
      box-sizing: border-box;
      flex-direction: column;
      text-align: center;
      overflow-x: hidden;
    }

    img {
      max-width: 300px;
      margin-bottom: 20px;
    }

    h1 {
      text-shadow: 2px 2px 0 rgb(80, 80, 0);
      font-size: 2.5em;
      margin: 0;
      font-weight: bold; 
      /* -webkit-text-stroke: 1px black;  /* ✅ 1px black stroke around letters */
      color: rgb(207, 134, 0);
    }

    p {
      color: #ffd580;
      font-size: 1.2em;
      margin-top: 10px;
    }

  .offset-wrapper {
    transform: translateY(-10%);
  }

  a{
    color: lightblue;
  }

  .highlight{
    color: #ffd580;
  }