* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff4ec;
  color: #474350;
}

header{
    color: rgb(46, 46, 82);
    text-align: center;
    padding: 12px;
    text-shadow: 0px 2px 0px rgb(177, 122, 122);
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 30px;
  padding: 1rem;
  text-align: center;
}

/* .photo {
  flex: 0 0 300px;
} */
p{
  font-size: 25px;
  font-family: bold;
  font-weight: bold;
  padding-top: 5px;
}
.photo img {
  width: 400px;
  height: 250px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2)
}

footer{
  text-align: center;
  padding: 20px;
  background-color:  #080f08;
  color: wheat;
}

.copyright{
  font-size: 15px;
  font-weight: 100;
}

.photo img:hover {
  transform: scale(1.10);
}