body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family:Arial, Helvetica, sans-serif;
  }
  h2 {
    font-size: 24pt;
  }
  p {
    font-size: 18pt;
  }
  .line-spacing {
    line-height: 2;
  }

  .imagine {
    color: #ffffff;
    text-shadow: 0 0 8px #ff6f6f;
  }

  .background-image {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
  }
  
  .background-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.6;
  }
  
  .logo-container {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: bobbing 3s ease-in-out infinite;
  }
  
  .logo {
    width: 200px;
    height: auto;
    cursor: pointer;
  }
  
  .blibble-image-container {
    position: absolute;
    top: calc(5%);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
  
  .blibble-image {
    width: 40vw;
    height: auto;
  }
  
  @keyframes bobbing {
    0% {
      transform: translate(-50%, -50%) translateY(-10px);
    }
    50% {
      transform: translate(-50%, -50%) translateY(10px);
    }
    100% {
      transform: translate(-50%, -50%) translateY(-10px);
    }
  }

  .shadow {
    filter: drop-shadow(2px 4px 8px rgba(0, 0, 0, 0.6));
  }
  
  .typing-effect {
    position: relative;
    margin: 5vh auto;
    text-align: center;
  }
  
  .text {
    display: inline-block;
    font-family: Courier New;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 2px;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.9));
  }
  
  .cursor {
    font-size: 32px;
    font-weight: bold;
    width: 10px;
    height: 24px;
    background-color: black;
    animation: cursor-blink 0.7s infinite;
  }
  
  @keyframes cursor-blink {
    0%, 100% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
  }

  .overlay {
    display: none;
    position: fixed;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: 20px; 
    z-index: 9999;
    animation: fadeInOverlay 0.5s ease-in forwards;
    overflow:auto;
  }
  
  .overlay-content {
    position: relative;
    margin: 5vw;
    text-align: center;
    color: white;
    overflow: auto;
  }
  
  .overlay-logo {
    width: 20%;
    min-width: 300px;
  }

  .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    font-weight: bold;
    color: red;
    cursor: pointer;
    font-size: 32pt;
  }

  @keyframes fadeInOverlay {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  .footer {
    color: rgba(255,255,255,0.5);
    padding: 10px;
    text-align: left;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
  }