/* Reset some default styles */
body, h1 {
    margin: 0;
    padding: 0;
}

/* Body styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    padding: 20px;
}

/* Center the heading */
h1 {
    text-align: center;
    margin-bottom: 20px;
}

/* Grid container for all cards */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px; /* Space between cards */
    padding: 20px;
}

/* Card styles */
.card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden; /* Ensures images don't overflow */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 100%; /* Image takes full width of the card */
    height: 200px; /* Fixed height for the image */
    object-fit: cover; /* Ensures the image covers the area */
}

.card h3 {
    margin: 10px;
    font-size: 1.2em;
}

.card p {
    margin: 0 10px 10px;
    color: #555;
}
