body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #0A2463, #0E4C92);
    color: white;
    text-align: center;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

.container {
    text-align: center;
}

h1 {
    margin-bottom: 20px;
}

.card-container {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.card {
    background: white;
    color: black;
    padding: 20px;
    width: 250px;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

h2 {
    margin-bottom: 10px;
}

.home-button {
    margin-top: 20px;
    padding: 12px 20px;
    background: #ffcc00;
    color: black;
    font-size: 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.home-button:hover {
    background: #e6b800;
}
