﻿body {
    margin: 0;
    padding: 0;
    background-color: #F8F9FA; /* Light blue background */
    font-family: Arial, sans-serif;
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.watermark {
    font-family: 'Roboto', sans-serif;
    position: fixed;
    top: 300px; /* Starts below the layout header */
    left: 50%;
    width: 200%;
    font-size: 10vw;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.03);
    transform: translateX(-50%) rotate(20deg); /* Center horizontally, slant slightly */
    transform-origin: top center;
    text-align: center;
    pointer-events: none;
    user-select: none;
    z-index: 0; /* Behind everything */
    white-space: nowrap;
}

.content {
    position: relative;
    z-index: 1; /* Above the watermark */
    padding: 2rem;
}
