@font-face {
    font-family: 'HelvetiHand';
    src: url('fonts/HelvetiHand.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'HelvetiHand', sans-serif;
    text-align: center;
    background-color: black;
    color: white;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.lis-title {
  font-family: 'HelvetiHand', sans-serif;
  font-size: 4rem;
  text-align: center;
  margin-top: 1rem; /* Reduced from 2rem */
  color: white;
  letter-spacing: 0.1rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
  z-index: 2;
  position: relative;
}



h2 {
    font-family: 'HelvetiHand', sans-serif;
    text-align: center;
    background-color: black;
    color: white;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

  .homepage .content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1; 

  }

  .homepage .header-text {
    margin-bottom: 2rem;
    font-size: 2rem;
    color: white;
    font-size: 90px;
  }
  
  .button-container {
    text-align: center;
    margin: 30%;
  }
  
  .consequence-link {
    text-decoration: none;
  }
  
  .consequence-button {
    display: inline-block;
    font-family: 'HelvetiHand', sans-serif;
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    border: 2px solid white;
    padding: 0.75rem 2rem;
    background-color: transparent;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 3px 3px 0px #222; /* sketch-style offset shadow */
    border-radius: 8px;
  }
  
  .consequence-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05) rotate(-1deg);
    box-shadow: 5px 5px 0px #000;
}

  body {
    margin: 0;
    font-family: 'HelvetiHand', sans-serif;
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    color: #f4f4f4;
  }
  
  body::before {
    content: "";
    background: url('assets/homeback.jpg') no-repeat center center fixed;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    filter: blur(10px);
    z-index: -1;
  }

  #bg-video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: blur(4px) brightness(0.6); /* Optional for style */
  }
  
  .content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    font-family: 'HelvetiHand', sans-serif;
    top: 40vh;
  }
  
 