* {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-sizing: content-box;
}

body {
  background-color: #f0f0f0;
}

main {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

#gente {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.person {
  background-color: white;
  width: 150px;
  text-align: center;
  padding: 0;
  margin: .5rem;
  border-radius: 10px;
  transition: all 150ms ease-in-out;
  word-wrap: break-word;
}

.person:not(.mine):hover {
  cursor: pointer;
  transform: scale(1.05);
}

.person img {
  display: block;
  margin: 0 auto;
  width: 100%;/*100px;*/
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  clip-path: inset(0 0 4% 0)
}

.person h1 {
  margin: .5rem 1rem;
  font-size: 1.3rem;
}

.mine {
  padding-bottom: .5rem;
}

.selected {
  filter: opacity(20%) blur(1px);
}

textarea{
  resize: vertical;
  width: 100%;
  height: 50vh;
  border: none;
}

button {
  margin: 1rem;
  padding: 1rem;
  border: none;
  border-radius: 5px;
  background-color: lightgreen;
  color: black;
  font-weight: bold;
  font-size: 1rem;
  transition: all 100ms ease-in-out;
}

button:hover {
  cursor: pointer;
  transform: scale(1.05);
}

@media(max-width: 768px) {
  h1 {
    font-size: 1rem;
  }
  .person {
    width: 100px;
  }
}
