@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

:root {
    --main-color: rgb(219,199,113);
    --background-color: rgb(38, 38, 38);
    --h1-font: 'Montserrat', sans-serif;
    --p-font: Arial, Helvetica, sans-serif;
}
body {
    margin: 0;
    padding: 0;
    background-color: black;
}
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background-color: rgb(33, 33, 33);
}
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: var(--main-color);
}
.first-section {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 100px 0;
}
.first-section .privacy-policy-box {
    width: 1200px;
    padding: 15px 20px;
    background-color: var(--background-color);
    color: rgba(255,255,255,.94);
    border-radius: 10px;
}
.first-section .privacy-policy-box h1 {
    font-size: 25px;
    font-family: var(--h1-font);
}
.first-section .privacy-policy-box h2 {
    font-size: 22px;
    font-family: var(--h1-font);
}
.first-section .privacy-policy-box p {
    font-family: var(--p-font);
}
.first-section .privacy-policy-box p a {
    color: var(--main-color);
}
/*privacy-policy responsive design*/
@media (max-width: 1300px) {
    .first-section .privacy-policy-box {
        width: 90%;
    }
}
@media (max-width: 950px) {
    .first-section {
        padding: 80px 0 60px 0;
    }
}
@media (max-width: 480px) {
    .first-section .privacy-policy-box h1 {
        font-size: 22px;
    }
    .first-section .privacy-policy-box h2 {
        font-size: 20px;
    }
}