/*
* Style by D3NN7
* and Patrick Hlauke (https://codepen.io/patrickhlauke/pen/YaoBop)
*/

@font-face {
  font-family: 'Jupiter';
  src: url('../Assets/fonts/Jupiter.otf');
  font-weight: normal;
  font-style: normal;
}
  body { background: #111;
         padding: 1em;
         font-family: Jupiter, sans-serif;
         color: #eee;
         font-size: 1em;
         line-height: 1;

         letter-spacing: 0.125em;
         animation-duration: 0.01s;
         animation-name: textflicker;
         animation-iteration-count: infinite;
         animation-direction: alternate;
  }
  h1 {
    font-size: 5em;
    text-align: center;
  }
  p {
    font-size: 1.2em;
    text-align: center;
  }

  .DialogueBox {
    border: 0.125rem solid #75fa69;
    padding: 1rem;
    margin-bottom: 2rem;
    background: #222;
    margin: 0 auto 2rem;
    align-self: center;
    box-sizing: border-box;
    width: 100%;
    max-width: 40rem; /* adjust to the point where you want wrapping to occur */
    white-space: normal;
    overflow-wrap: anywhere; /* allow long words/URLs to wrap */
    word-wrap: break-word; /* legacy */
    word-break: break-word;  /* fallback for older browsers */
    hyphens: auto;
    min-width: 0; /* allow flex item to shrink and enable wrapping */
  }



  .fade-in {
    opacity: 0;
    animation: fadeIn 1.5s ease-in forwards;
  }

  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }
  body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .disclaimer {
    font-size: 0.8em;
    color: #ccc;
    text-align: center;
    margin-top: 0.5rem;
    padding: 0.5rem;
    border-top: 1px solid #444;
    max-width: calc(100% - 40px);
    line-height: 1.4;
    background-color: #111; /* Match the terminal footer background */
    position: relative;
    bottom: 0;
    z-index: 1001; /* Ensure it appears above other elements */
  }