/* styles.css */
body {
    background: url('images/adobestock_290992981-small.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    color: white;
}

.main-title {
    position: relative; 
    top: -20px; 
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;
    text-align: center;
    font-weight: bolder;
    text-transform: uppercase;
    background-color: rgba(0,19,7,255);  
    padding: 10px 20px; 
    color: white;
    width: 1800px;
    box-shadow: 0 0 10px rgb(111, 112, 110);
    z-index: 10; 
    margin-top: 40px;
    margin-bottom: 0px;
}

.container {
    text-align: center;
    margin-top: 450px;
    margin-bottom: 150px;
}

h1 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 50px;
}

.team {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.member {
    background: rgba(0, 0, 0, 0.6);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 15px rgba(8, 8, 8, 0.7);
}

.member img {
    width: 250px;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
}

.name {
    margin-top: 10px;
    font-weight: bold;
    font-size: 1.2em;
    color: #fafcfa;
}
