   body {
            font-family: Arial, sans-serif;
            background: rgba(173, 216, 230, 0.2);
            margin: 0;
            padding: 0;
            text-align: center;
        }

        .team-container {
            max-width: 1000px;
            margin: 50px auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }

        h1{
            margin-top:30px;
        }
        .team-member {
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            padding: 20px;
            width: 250px;
            text-align: center;
            transition: transform 0.3s;
        }

        .team-member:hover {
            transform: scale(1.05);
        }

        .team-member img {
    width: 100%; /* Ensures it takes the full width of the container */
    height: 200px; /* Fixed height */
    object-fit: cover; /* Crops the image to fit without distortion */
    border-radius: 5px; /* Slightly rounded corners */
    display: block; /* Removes extra space below images */
}

        .team-member h3 {
            font-size: 20px;
            margin: 10px 0 5px;
            color: #333;
        }

        .team-member p {
            font-size: 14px;
            color: #555;
            margin: 5px 0;
        }