.image{
    height: 300px;
    width: vw;
    background-image: url("../images/background.jpg");
    background-size: cover;
    text-align: center;
    color: white;
    font-size: 40px;
    padding: 100px 0;
    margin-bottom: 30px;
    margin-top: 78px;
}


.data{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width: 80%;
    margin: auto;
    /* border: 2px solid black; */
}

.profile{
    height: 400px;
    width: 28%;
    /* border: 2px solid black; */
    margin-top: 20px;
    text-align: center;
}

.profile-photo img{
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

h2, h3, h4 {
    color: #500000;
}



@media(max-width:1092px){
    .profile{
        width: 42%;
    }
}


@media(max-width:680px){
    .data{
        flex-direction: column;
    }
    .profile{
        width: auto;
        height: auto;
    }
}

