#info{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px;
  padding-top: 20px;
  padding-bottom: 50px;
  font-family: 'Quicksand';
}

#info > h2{
  font-family: 'Gabarito', sans-serif;
}

.info-container{
  margin-top: 20px;
  align-self: center;
  justify-self: center;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  overflow: hidden;
  flex-wrap: wrap;
  gap: 20px;

}

.info-photo{
  display: flex;
  max-width: 400px;
  flex-direction: column;
  gap: 10px;
}

.info-photo > p{
  min-height: 5ch;
}

.info-photo > img{
  max-width: 100%;
  max-height: 100%;
  border-radius: 5px;
}

@media (max-width: 900px) {
  .info-container{
    max-width: 100%;
    min-width: 100%
  }
}