@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
    --menu-speed: 0.75s;

    --text-color: #beb7a4;

    --color-black: #1c1b1b;
}





* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--text-color);
}



body,
html {
    height: 100%;
    margin: 0;
    font-family: 'Roboto Slab', serif;
    font-family: 'Rubik', sans-serif;
    scroll-behavior: smooth;
    line-height: 1.8em;
    letter-spacing: 1px;
    background-color: var(--color-black);
}


h1 {
    font-weight: 900;
    font-size: 3rem;
    font-family: 'Roboto Slab', serif;
    line-height: 1.4em;
    margin-bottom: 1px;
}

h2 {
    font-weight: 700;
    font-size: 2.3rem;
    font-family: 'Roboto Slab', serif;
    line-height: 1.4em;
    margin-bottom: 1px;
}

h3 {
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Rubik', sans-serif;
    margin-top: 30px;
    margin-bottom: 1px;
}

h4 {
    font-weight: 500;
    font-size: 1.4rem;
    margin-bottom: 1px;
}

p {
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 2.3em;
}


a {
    color: var(--text-color);
    font-weight: 700;
}


.privacy {
    background-color: var(--color-black);
    color: var(--text-color);

    height: 100vh;

    width: 100%;
    text-align: center;
    align-content: center;
    align-items: center;

}


.privacy .content {
    height: 100vh;

    width: 100%;
    background-color: var(--color-black);
    color: var(--text-color);
    text-align: center;
    align-content: center;
    align-items: center;
}




.content {
    padding: 0 37%;
}

/* Images End */



.privacy .content img {
    width: auto;
    height: 77px;
    display: block;
    margin: 30px auto;
}

/*

.backgroundlogo {
    background-color: var(--color-black);
    padding-top: 250px;
    padding-bottom: 70px;
}

*/






/* Media Querries */

/*
fixed = parallax
scroll = normal
*/

@media (max-width: 568px) {
    .privacy .content {
        margin-right: auto;
        margin-left: auto;
        align-items: center;
        align-content: center;
        justify-content: center;
        text-align: center;
    }

    .privacy .content img {
        width: auto;
        height: 70px;
        display: block;
        margin: 30px auto;
    }

    .privacy .content h1 {
        font-weight: 900;
        font-size: 2.3rem;
        font-family: 'Roboto Slab', serif;
        line-height: 1.4em;
        margin-bottom: 1px;
    }
}

@media (max-width: 1080px) {

    .privacy .content img {
        width: auto;
        height: 70px;
        display: block;
        margin: 30px auto;
    }
}


@media (max-width: 1280px) {
    .privacy .content {
        margin-right: auto;
        margin-left: auto;
        align-items: center;
        align-content: center;
        justify-content: center;
        text-align: center;
        padding: 30px;
    }
}