body {
  display: flex;
  flex-direction: column;
  font-family: 'Roboto', sans-serif;
}

h1, h3 {
  width: 100%;
  text-align: center;
}

.photo-container {
  display: flex;
  height: 500px;
  width: 100%;
  justify-content: center;
}

.photo {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.photo > span {
  font-size: large;
}

.photo > img {
  width: 500px;
  object-fit: cover;
  padding: 10px;
}
