* {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f4f4f4;
    padding-top: 80px;
}

.container {
    width: 80%;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #0099ff;
}

.title {
    background: #0099ff;
    color: white;
    padding: 15px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.members_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.member_card {
    background: #ffffff;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #0099ff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    position: relative;
}

.member_card:hover {
    transform: scale(1.05);
}

.image_wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 10px;
}

.member_card img {
    width: 100%;
    max-width: 150px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    border-bottom: 4px solid #0099ff;
}

.info {
    background: #0099ff;
    padding: 10px;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .container {
        width: 95%;
        padding: 15px;
    }
    .title {
        font-size: 18px;
    }
    .members_grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}
