body{
    background-color: #c2c2c2;
    font-family: Arial, sans-serif;
}

h1 {
    color: #333;
    text-align: center;
    margin-top: 50px;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    margin-top: 50px;
    gap: 20px;
}

.card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 10px;
    width: 200px;
    text-align: center;
}

.card h2 {
    margin-bottom: 10px;
    color: #555;
}

.card p {
    font-size: 18px;
    color: #777;
}

