.container{
    width: 100%;
    height: auto;
    background-color: rgb(240, 182, 36);
display: flex;
flex-direction: row;
justify-content: space-around;
flex-flow: wrap;
}

.box{
    width: 30%;
    height: auto;
    background: white;
    margin: 20px;
box-sizing: border-box;
text-align: center;
border-radius: 5px;
border: 3px solid rgb(146, 36, 36);
}

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

}

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


    
    
}

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

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

}

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

}

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


    
    
}


