* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Garamond', Times, serif;
    background: url('background.jpg');
    background-size: cover;
    color: white;
    padding: 2rem;
    line-height: 1.6;
  }
  
  h1, h2 {
    font-family: 'Garamond', Times, serif;
    font-weight: bold;
    color: black;
  }
  
  h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  h2 {
    font-size: 2rem;
    margin-top: 2rem;
  }
  
  p {
    margin-bottom: 1rem;
    color: white;
  }

  .container {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(100, 100, 100, 0.97);
    padding: 2rem;
    border: 4px solid black;
    box-shadow: 0 0 20px #29242644;
  }
  
  details {
    background-color: #222;
    border: 1px solid white;
    border-radius: 4px;
    margin-bottom: 1rem;
    padding: 1rem;
  }
  
  summary {
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    color: white;
  }
  
  details[open] summary {
    color: #FF0000;
  }
  
  disclaimer {
    margin-top: 3rem;
    text-align: center;
    font-size: 0.9rem;
    color: #777;
  }
  
  a {
    color: white;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }

  img {
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
    object-fit: contain; }

    #jumpscare {
      display: flex;
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background-color: black; /* optional for blackout effect */
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: opacity 0.5s ease-out; /* quick fade-out */
      pointer-events: none;
      z-index: 9999; /* ensures it appears on top */
    }
    
    #jumpscare.visible {
      opacity: 1;
      pointer-events: auto;
    }
    
    #goldenfreddy {
      max-width: 100%;
      max-height: 100%;
    }
    
