/* import specific fonts from Google Fonts */
  @import url("https://fonts.googleapis.com/css2?family=Pirata+One&family=UnifrakturMaguntia&display=swap");

  /* locks background image so it covers the whole screen and doesn't stretch */
  html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min_height: 100dvh;
    background-image: url("/assets/forest_dark.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: #111;
    overflow-y: auto;
  }

  /* main content wrapper */
  .content-container {
    position: relative;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
    z-index: 2;
  }

  /* stylized text boxes to make gothic text readable */
  .text-card {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    width: 100%;
  }

  /* TITLES: UnifrakturMaguntia */
  h1 { 
    font-family: 'UnifrakturMaguntia', serif;
    font-size: 5rem; 
    font-weight: 400;
    color: #ffd900; /* classic gold color */
    margin-top: 0; 
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.9), 0px 0px 25px rgba(0, 0, 0, 0.5);
  }

  /* BODY TEXT: Pirata One */
  p { 
    font-family: 'Pirata One', serif;
    font-size: 1.6rem; 
    line-height: 1.5; 
    letter-spacing: 0.5px;
    color: #e0e0e0; /* soft off-white */
    margin-bottom: 25px;
  }
