body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: auto;
    background-image: url(/bgbleu.jpeg);
    background-size: cover;
}

header {
    background-color: rgb(255, 255, 255);
    color: black;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

footer {
    text-align: center;
    padding: 20px 0;
    color: white;
    position: static;
    width: 100%;
    bottom: 0;
}

#team .card {
    margin-top: 40px;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.632); 
}

#team .card:hover {
    transform: scale(1.05);
}

#team .card img {
    height: 200px; 
    object-fit: cover;
}

#team .card-body {
    text-align: center;
}

.btn-more {
    padding: 12px 20px;
    border-radius: 30px;
    cursor: pointer;
    border: none;
    background-color: #007bff;
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-more:hover {
    color: white;
    background-color: #0056b3;
    transform: scale(1.1); 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-more:active {
    color: white;
    background-color: #004080;
    transform: scale(0.95); 
}
