body {
    background-color: #4d32ce;
    font-family: Arial, sans-serif;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
}

h1 {
    color: #FFD700; /* Gold color for the title to compliment the background */
}

.btn {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #FFD700; /* Gold color to complement the background */
    color: #4d32ce; /* Background color for the text for contrast */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.btn-primary {
    font-size: 20px;
    padding: 15px 30px;
}

.btn:hover {
    background-color: #ffffff;
    color: #4d32ce;
}

.support-links {
    margin-top: 20px;
}

