main {
    margin-top: -29px;
    margin-bottom:0px ;
}

.container-team {
    height: max-content;
    background: #333;
    margin-top: 0;
    margin-bottom: 0;
}

.container-team h1 {
    text-align: center;
    color: #fff;
    padding-top: 20px;
}

.board {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    margin-top: 30px;
}
.board::-webkit-scrollbar {
    width:0  ;
    display: none;
    
}
.persons {
    height: 80vh;
    width: 30vw;
    text-align: center;
    display: grid;
    place-items: center;
    margin: 5px;
}

.persons .image img {
    width: 22vw;
    height: 60vh;
    border-radius: 5px;
}

.persons .info {
    height: max-content;
    width: 17vw;
    background-color: rgb(111, 111, 178);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    bottom: 50px;
    border-radius: 5px;
    padding: 15px;
}

.persons h3 {
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: center;
}

.persons p {
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: center;
    font-size: smaller;
}

.voulnteers {
    display: flex;
    justify-content: center;
    align-items: center;
}

.volun-img {
    margin: 20px;
}

.volun-img img {
    width: 70vw;
    height: 70vh;
    margin: 20px;
}

@media (max-width:820px) {
    .persons {
        height: 60vh;
        width: 65vw;
        margin: 10px;
    
    }

    .persons .image img {
        width: 65vw;
        height: 45vh;
    }

    .persons .info {
        width: 55vw;
        position: static;
        margin-bottom: 30px;
    }

    .volun-img img {
        width: 90vw;
        height: auto;
    }
}
