
body {
    font-family: 'Helvetica', sans-serif;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
    position: relative;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 500px;
    margin-bottom: 20px;
}

h1 {
    font-size: 35px;
    margin-bottom: 10px;
}

h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.container {
    text-align: center;
}


.privacy-container {
    text-align: left;
    max-width: 750px;
    box-sizing: border-box;
    margin-top: 500px;
}

.blank-container {
    height: 5rem; /* Adjust the height value to create the desired space */
}


.footer-container {
    position: relative;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
}

.spacer {
    flex-grow: 0.5;
}

.footer p {
    margin: 5px 0;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

