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




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Gothic+A1", sans-serif;
}

.container {
    width: 90%;
    height: 100vh;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
}

.privacy {
    margin-top: 50px;
    max-width: 330px;
    height: 95vh;
    background-color: #fff;
    display: block;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

p {
    /*background-color: #202020;*/
    display: flex;
    align-content: center;
    width: 70%;
    /*max-width: 330px;*/
    z-index: 2;
    padding: 0px 10px;
}

h3 {
    color: #202020;

    font-weight: 800;
    margin-bottom: 20px;
    margin-top: 20px;
}

h5 {
    color: #202020;
    line-height: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    margin-top: 20px;
}

img {
    max-width: 30px;
    height: 30px;
}

a {
    color: #202020;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 20px;
}

.back-to-top-btn img {
    width: auto;
    height: 30px;
    margin-top: 7px;
    transition-duration: 0.8s;
}

.back-to-top-btn img:hover {
    width: auto;
    height: 30px;
    color: #00ffff;
    transform: scale(125%);
    transition-duration: 0.8s;
}