:root {
    --white-primary: rgb(236, 236, 236);
    --black-bg: rgb(21, 21, 21);
    --grey-accent: rgb(179, 179, 179);
}

body {
    background-color: var(--black-bg);
    color: var(--white-primary);
    font-family: "Readex Pro", sans-serif;
    font-optical-sizing: auto;
    font-variation-settings: "HEXP" 0;
    font-size: 12px;
    letter-spacing: 0.02rem;
    line-height: 1.6;
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.02rem;
}

h2 {
    font-size: 16px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.02rem;
}

p {
    margin-bottom: 15px;
    text-align: justify;
    font-weight: 300;
}

a {
    color: var(--grey-accent);
    text-decoration: none;
    border-bottom: 1px solid var(--grey-accent);
    transition: color 250ms ease-in-out;
}

a:hover {
    color: var(--white-primary);
}

ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

ul li {
    margin-bottom: 10px;
    font-weight: 300;
}

.section {
    margin-bottom: 40px;
}

/* Fader CSS */

#fader {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    z-index: 999999;
    pointer-events: none;
    background: rgb(33, 33, 33);
    animation-duration: 700ms;
    animation-timing-function: ease-in-out;
}


@keyframes fade-out {
    from { opacity: 1 }
      to { opacity: 0 }
}

@keyframes fade-in {
    from { opacity: 0 }
      to { opacity: 1 }
}

#fader.fade-out {
    opacity: 0;
    animation-name: fade-out;
}
#fader.fade-in {
    opacity: 1;
    animation-name: fade-in;
}