/* **********Body*********** */
.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: 40px;
    margin-top: 78px;
}

.data{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width: 80%;
    margin: auto;
    text-align: justify;
}

h2{
    color: #500000;
}

.container{
    height: 380px;
    width: 30%;
    text-align: center;
}

.photo img {
    height: 250px;
    width: 250px;
    object-fit: cover;
    margin-bottom: 20px;
}


/* **********Body*********** */

@media(max-width:1092px){
    .container{
        width: 45%;
    }
    .photo img{
        height: 200px;
        width: 200px;
    }
}


@media(max-width:680px){
    .data{
        flex-direction: column;
    }
    .container{
        width: auto;
        height: auto;
        padding: 15px;
    }
    .photo img{
        height: 200px;
        width: 200px;
    }
}