body, h1, p {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 128px;
}

.main-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

/* Style for the policy content */
.policy-content {
    max-width: 600px;
    max-height: 400px;
    overflow-y: auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

/* Style for the paragraph */
p {
    font-size: 1.2em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

#main-text {
    text-align: center;
    max-width: 600px;
}

.email{
    text-decoration: underline;
}

footer {
    position: absolute;
    bottom: 20px;
    color: #666;
}

a{
    color: #666;
}