

/* header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
} */

.team-section {
    padding: 50px 0;
}

.team-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.card {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-10px);
}

.card img {
    width: 150px;
    height: 150px;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card p {
    color: #666;
    margin-bottom: 20px;
}

.card .btn {
    background-color: #0099FF;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.card .btn:hover {
    background-color: #0077cc;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer p {
    font-size: 1rem;
}
.team-content {
    background-image: url('./assets/tutorteams.jpg');
    width: 100%;
    height:50%;
    background-repeat: no-repeat;
    background-size: cover;
   padding-top: 45vh;
    border-radius: 10px;
    text-align: center;
    margin-top: 1px;
 } 
 .mx-auto{
    border: 1px solid black;
 }

@media (max-width: 768px) {
    .team-content{
        height: 20vh;
    }
}