body {
    background-color: #121212; /* Dark background color */
    color: #ffffff; /* Light text color */
    font-family: 'Futura', sans-serif; /* Use Futura font */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

img {
    position: absolute;
    top: 15px;
    width: 200px;
    margin-bottom: 20px;
}

.privacy-policy {
    position: absolute;
    top: 50px;
    max-width: 800px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 8px;
    margin-top: 20px; /* Add margin to separate logo and privacy policy */
}

.info-list {
    list-style-type: circle;
    padding: 0;
    margin: 0;
}

.info-list li {
    margin-bottom: 10px;
}

a {
    color: #0fb10c; /* Link color */
}

a:hover {
    text-decoration: underline;
}
