body {
    background-color: #1a1a1a;
    font-family: Arial, sans-serif;
    color: white;
    margin: 0;
    padding: 0;
}

header {
    background-image: url('/__assets/headerBackground.webp');
    background-repeat: no-repeat;
    background-position: 50%;
    background-size:cover;
    padding: 10px;
    text-align: center;
}

h1 {
    font-size: 36px;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

p {
    font-size: 18px;
    line-height: 1.5;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.logo h1 {
    font-size: 24px;
    margin: 0;
    padding: 0;
}

.privacy-policy-desktop {
    transform: translateY(-25px);
}

.privacy-policy-mobile {
    transform: translateY(-5px);
}

ul > li {
    margin-top: 10px;
}

.collected-information, .owner-information {
    font-size: 20px;
}

a.mail {
    text-decoration: underline;
    color: white;
}

.owner-informations {
    margin-top: 50px;
}

.collected-informations {
    margin-top: 30px;
}

.mobile-site {
    display: none;
}

@media only screen and (max-width: 720px) {
    .desktop-site {
        display: none;
    }
    
    .mobile-site {
        display: block;
    }
}