.container{
    width: 100%;
    height: auto;
background-color: white;
display: flex;
flex-direction: row;
justify-content: space-around;
flex-flow: wrap;
}

.box{
    width: 90%;
    height: auto;
   background-color: whitesmoke;
    margin: 20px;
box-sizing: border-box;

border-radius: 5px;
}

@media screen and (max-width:1200px) {
    .box{
        width: 90%;
    }

}

@media screen and (max-width:600px) {
    .box{
        width: 90%;
    }


    
    
}

.img1{width: 700px;
height: 250px;}

.box1{
    width: 30%;
    height: auto;
    background: white;
    margin: 20px;
box-sizing: border-box;
padding: 20px;

border-radius: 5px;
}

@media screen and (max-width:1200px) {
    .box1{
        width: 30%;
    }

}

@media screen and (max-width:600px) {
    .box1{
        width: 90%;
    }
}

.box2{background-color: green;
width: 100%;
height: auto;
text-align: center;
padding-top: 30px;
}