body{
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal; 
}
.team-section {
    position: relative;
    background-color: #f9f9f9;
}

.team-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('path/to/your/image.jpg'); 
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    z-index: -1;
}

.team-content {
    padding: 50px;
    text-align: center;
    color: #ffffff; 
}

.team-content h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.team-content p {
    font-size: 1.2rem;
}
.social-link {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    border-radius: 50%;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.social-link:hover, .social-link:focus {
    background: #ddd;
    text-decoration: none;
    color: #555;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

