/* Basic styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.header {
    position: fixed; /* Sticky header positioning */
    top: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: white;
    padding: 15px;
    text-align: center;
}

/* Hide the header when not in view (optional) */
.header:not(:placeholder-shown) {
    opacity: 1;
}
