﻿html, body {
    background: #041017;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: start;
    font-family: Arial, sans-serif;
    width: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
    color: white;
}

.space {
    margin: 0 auto;
    padding-inline: 5vh;
    width: 100%;
    box-sizing: border-box;
}

section {
    margin-bottom: 5vh;
}

.content-list {
    margin-bottom: 5vh;
}

#privacy-policy {
    margin-top: 10px;
}

#privacy-policy h1 {
    font-size: 3em;
}

#links {
    display: flex;
    flex-direction: column;
}

.list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list li {
    margin-bottom: 1em;
}

    .list li a {
        text-decoration: none;
        color: #00ADEF;
        transition: color 0.3s ease;
    }

        .list li a:hover {
            color: white !important;
        }

    #links a {
        text-decoration: none;
        color: #00ADEF;
        width: auto;
    }