#container1{
	width:80%; 
	margin:0 auto;
}

.kutuResim{
  display:inline-block;
  width:23%;
  border:2px solid #ff8400;
  border-radius:5px; /* Köşeleri yuvarlat */
  box-shadow:0 4px 8px 0 gray, 0 6px 20px 0 gray;
  text-align:center;
  padding-bottom:0px;
  box-sizing:border-box; /* Border genişliği bozmasın */
}

@media only screen and (max-width: 800px){
    .kutuResim{
        width:48%;
        margin:6px 0;
    }
}

@media only screen and (max-width: 400px){
    .kutuResim{
        width:95%;
    }
}

.kutuResim img{
    width:100%;
    height:auto;
    border-radius:4px 4px 0 0;
}

.kutuResim p{
    margin:0;
    padding:0;
}