
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
html {
    height: 100%;
    background-color: #fdf9e8; 
}

body {
    direction: rtl;
    font-family: 'Heebo', sans-serif;
    justify-content: end;
    width: 100%;
    padding: 5%;
}

h2 {
    font-size: 1.4rem;
}

h2, p, ul {
    margin-bottom: 10px;
}

ul {
    margin-right: 25px;
}

p, ul{
    font-weight: 200;
}

/* Responsiveness */
@media (max-width: 768px) {
    html, body {
        padding: 0 5%;
    }

    .policy-content {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .policy-content {
        font-size: 1.2rem;
    }
}
