body {
    background-color: #020403; /* Dark background for contrast */
    color: #d6c3e0; /* Light purple text */
    font-family: 'Aptos', sans-serif; /* Use Aptos font */
}

h1, h2, h3, p {
    text-align: center; /* Center text for headings and paragraphs */
    font-family: 'Aptos', sans-serif; /* Use Aptos font for headings */
    font-weight: 900; /* Ensure it's bold */
}

a {
    color: #d6c3e0; /* Light purple for links */
    text-decoration: none; /* Remove underline */
}

a:hover {
    color: #4b2c6f; /* Dark purple on hover */
}

.button {
    background-color: #d6c3e0; /* Light purple button */
    color: white; /* White text on button */
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.button:hover {
    background-color: #4b2c6f; /* Dark purple on button hover */
}
