html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    display: flex;
    justify-content: center;
    background-color: #0F0F0F;
    color: #fff;
    font-family: 'Karantina', serif;
}

div.center {
    width: 60%;
    padding: 40px 0;
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center elements horizontally */
    gap: 20px; /* Add spacing between the elements */
}

div.center > img.logo {
    width: 80%;
    max-width: 350px;
    border-radius: 20px;
}

div.links > a {
    text-decoration: underline;
    color: inherit;
    margin: 0 10px;
    font-size: 1.5em;
}

p.description {
    font-size: 2em;
    margin: 10px;
}

p.description, a, div#privacy > h1, div#privacy > h2, div#privacy > span {
    text-align: center;
    width: 100%;
    color: inherit;
}

div#privacy > span {
    display: block;
}

div#privacy {
    font-weight: 100;
    font-size: 1.2m;
    font-family: 'Roboto', serif;
}

div#privacy > p {
    line-height: 1.4em;
}