body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    display: flex; 
    flex-direction: column; /* Stack children vertically */
    justify-content: flex-start; /* Align children to the start */
    align-items: center;
    min-height: 100vh; /* Minimum height of 100% of the viewport height */
    color: #E0E0E0;
}

.content-wrapper {
    flex-grow: 1; /* Allow this element to grow and take up available space */
    display: flex; /* Make this a flex container too */
    flex-direction: column; /* Stack children vertically */
    justify-content: center; /* Center children vertically */
    align-items: center; /* Center children horizontally */
    width: 100%; /* Take up full width */
    margin-top: 0; /* Adjust this value based on the height of your navbar */
}

.center-content {
    flex-grow: 1; /* Allow this element to grow and take up available space */
    display: flex; /* Make this a flex container too */
    flex-direction: column; /* Stack children vertically */
    justify-content: center; /* Center children vertically */
    align-items: center; /* Center children horizontally */
    width: 100%; /* Take up full width */
}

#navbar {
    width: 100%; /* Take up full width */
}

#footer {
    width: 100%; /* Take up full width */
}

.card {
    background-color: #1E1E1E;
    border-radius: 15px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    padding: 40px;
    max-width: 400px;
    text-align: center;
}

.button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: #FFFFFF;
    background-color: #4CAF50;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.1s;
}

.button:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    color: #FFFFFF; /* Change text color to white */
    text-decoration: none; /* Remove underline */
}

.button:active {
    background-color: #387C3B;
    transform: translateY(1px);
}
.patreon-button {
    background-color: #D32F2F;
}

.patreon-button:hover {
    background-color: #B02929;
}

.patreon-button:active {
    background-color: #8F2323;
}
.crossmark {
    font-size: 50px; /* Adjust this value as needed */
}
.checkmark {
    font-size: 50px; /* Adjust this value as needed */
}
.navbar {
    background-color: #000000 !important; /* Black background color */
    color: #E0E0E0; !important; /* Light text color for contrast */
}
.footer {
    background-color: #000000 !important; /* Black background color */
    color: #E0E0E0; !important; /* Light text color for contrast */
}

.policy-page-h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.policy-page-h2 {
    font-size: 1.5em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.policy-page-p {
    line-height: 1.6;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
}

.policy-page-ol {
    margin: 20px 0;
    padding-left: 20px;
}

.policy-page-a {
    color: #4CAF50;
    text-decoration: none;
}

.policy-page-a:hover {
    color: #45a049;
    text-decoration: underline;
}