body {
    color: #f0f0f0;
    background-color: #1e1e1e;
    font-family: Arial, sans-serif;
    padding: 20px;
}

header h1 {
    font-size: 36px;
    text-align: center;
}

.card-container {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.card {
    background-color: #333;
    padding: 20px;
    width: 30%;
    text-align: center;
    border-radius: 8px;
}

.card-header {
    font-size: 20px;
    color: #ff9800; /* Make the headers stand out */
    display: block;
    margin-bottom: 15px;
}

.card-link {
    display: block;
    color: #76b852; /* Modern green color for links */
    margin-bottom: 10px;
    text-decoration: none; /* Removes underline from links */
}

footer {
    text-align: center;
    margin-top: 20px;
    color: #aaa; /* Light grey color for copyright */
}