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

.box{
    width: 90%;
    height: auto;
    border: 1px solid white;
    margin: 20px;
box-sizing: border-box;

}

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

}

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


    
    
}

.img1{width: 1200px;
height: 300px;}

.box3{
    width: 90%;
    height: auto;
    background: white;
    margin: 10px;
box-sizing: border-box;
padding-left:  20px;


}




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

    .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%;
        }
    }