.text-overlay {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    text-align: left;
    width: clamp(350px, 75vw, 800px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: clamp(1rem, 3vw, 2rem);
}

.text-overlay.center {
    top: 50%;
    border-radius: 10px;
    transform: translate(-50%, -50%);
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    z-index: -1;
    pointer-events: none;
}

.site-title {
  display: none; /* Hides the title element */
}
