﻿/* =============================================
   BASE PRIVACY POLICY STYLES
   Shared across all device types.
   Always loaded first in PrivacyPolicy.html.
   ============================================= */


/* --- Reset & Base --- */
body, html {
    background-color: black;
    margin: 0;
    padding: 0;
}


/* --- Page Wrapper --- */
#Background {
    justify-items: center;
    position: relative;
    max-width: 2400px;
    width: 100%;
    z-index: 0;
    margin: 0 auto;
}


/* --- Blurred Background Image --- */
#MiddleGroundSection img {
    pointer-events: none;
    width: 100%;
    max-width: 2400px;
    height: 100%;
    filter: blur(5px) opacity(30%);
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    position: absolute;
    display: block;
    overflow: hidden;
    object-fit: cover;
}


/* --- Content Container --- */
#PrivacyPolicyContent {
    position: relative;
    z-index: 1;
    margin: 0 auto;
}


/* --- Footer Text --- */
#Footer p {
    font-family: "Franklin Gothic Demi Cond", sans-serif;
    font-size: small;
    color: white;
    margin: 0;
}