* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: sans-serif;
  background-color: #2c2f33;
  color: white;
}

p {
  text-align: center;
  padding: 0px 10px;
}

header {
  text-align: center;
  padding: 5px;
  border-bottom: 4px solid #47D990;
  background-color: black;
  color: #fff;
}

a {
  color: white;
}

.gallery {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  
}

.gallery img {
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
}

.gallery figcaption {
  text-align: center;
}

.galler::after {
  content: "";
  flex: auto;
}