
        html, body {
            margin: 0;
            padding: 0;
            margin-bottom:10px;
            height: 100%;
            width: 100%;
            display: flex;
            flex-direction: column; /* Stack elements vertically */
            align-items: center;
            text-align: center;
            background-color: white;
            font-family: "Helvetica", sans-serif;
            color: black;
            font-size:20px;
                line-height: 1; /* Reduce line height */
        }

        h1, h3 {
            margin-bottom: 20px; /* Space between headings */
        }
        * {
    margin: 0;
    padding: 0;
}
        .content {
            width: 80%; /* Adjust width as needed */
            max-width: 600px; /* Prevent it from being too wide */
            text-align: left; /* Align text to the left */
            background: #f0f0f0; /* Light background for visibility */
            padding: 20px;
            border-radius: 10px; /* Optional: rounded corners */
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: shadow effect */
        }
    a {
      font-style: italic;
      font-family: "Times New Roman";
      line-height: 1.3;
    }
    
    
    
    
#cloud1 {
  position: fixed;
  width: 30vw;
  height: 30vh;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);

  mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%),
               linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%),
                      linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-composite: source-in;
    z-index: 9999;
}


    p {
      line-height:30px;
    }
#cloud2 {
    z-index: 9999;
  position: absolute;
  top: 0;
  left: 0;
  border: none;
  width: 100vw;   /* make the inner site wide */
  height: 100vh;  /* full height */
  transform: scale(calc(30 / 100)); /* compress to fit 30vw × 30vh */
  transform-origin: top left;
}

  #imagepreview {
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }