body {
  background-color: black;
}
.box1 {
  max-width: 620px;
  height: relative;
  overflow-y: auto; 
  margin: 80px auto;
  padding: 35px 40px;
  background: transparent;
  backdrop-filter: blur(6px);
  color: #d7e0ff;
  text-shadow: 0 0 6px rgba(150, 170, 255, 0.35);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
}
.box2 {
  max-width: 60px;
  position: fixed;
  bottom: 100px;  
  left: 50%;
  transform: translateX(-50%);
  height: relative;
  padding: 35px 40px;
  text-shadow: 0 0 6px rgba(150, 170, 255, 0.35);
  line-height: 1.7;
}
.text-block center {
  font-size: 1.6rem;
  letter-spacing: 2px;
  margin: 25px 0;
}
.text-block a {
  display: block;
  margin-top: auto;
  text-align: center;
  margin-top: 20px;
  color: #bcd1ff;
  font-size: 1.6rem;
  text-decoration: none;
}
.text-block a:hover {
  text-shadow: 0 0 8px #fff;
}
.delayed-text {
    opacity: 0; 
    animation-name: fadeIn;
    animation-duration: 1s; 
    animation-delay: 3s; 
    animation-fill-mode: forwards; 
}
.delayed-text {
    opacity: 0;
    margin-top: 40px;     
    text-align: left;   
    color: #d7e0ff;       
    animation: fadeIn 1s ease forwards;
    animation-delay: 3s;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
setTimeout(() => {
    line = 1;        // skip the ". . ." line
    cursor = 0;      
}, 2000); // hide after 2 seconds
    .modal {
      display: none; 
      position: fixed; 
      z-index: 1000; 
      padding-top: 50px; 
      left: 0;
      top: 0;
      width: 100%; 
      height: 100%; 
      overflow: auto;
      background-color: rgba(0,0,0,0.9); 
    }

    .modal {
      display: none; 
      position: fixed; 
      z-index: 1000; 
      padding-top: 50px; 
      left: 0;
      top: 0;
      width: 100%; 
      height: 100%; 
      overflow: auto;
      background-color: rgba(0,0,0,0.9); 
    }

    .modal-content {
      margin: auto;
      display: block;
      width: 80%;
      max-width: 700px;
    }

    .modal-content img {
      width: 100%;
      height: auto;
    }
    .close {
      position: absolute;
      top: 45px;
      right: 75px;
      color: #fff;
      font-size: 40px;
      font-weight: bold;
      transition: 0.3s;
    }

    .close:hover,
    .close:focus {
      color: #FFF5EE;
      text-decoration: none;
      cursor: pointer;
    }