/* 
Here is some default starting css:
*/
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: sans-serif;
  background: #f5f6f7;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-bottom: 30px;
  
}

.header {
  /* write css here: */
text-transform: uppercase;
color: white;
background-color: #C55300; 
border-bottom: solid 4px orange;
width: 100%;
text-align: center;
padding: 30px;
}

.gallery {
      /* write css here: */
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
max-width: 800px;

}

.gallery img {
      width: 100%;
      max-width: 350px;
      height: 300px;
      /* write css here: */
     border-radius: 5px;
     object-fit: cover;
     
}
