body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    text-align: center;
    margin: 0;
    padding: 0;
}

h1 {
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    margin: 0;
}

.subtitle {
    margin: 20px;
    font-size: 18px;
}

.container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.card {
    text-decoration: none;
    color: white;
    background-color: #3498db;
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border-radius: 10px;
    transition: transform 0.3s, background-color 0.3s;
}

.card:hover {
    background-color: #2980b9;
    transform: scale(1.05);
}
