body {
  height: 100vh;
  display: grid;
  grid-template-rows: 100px auto 150px;
}

main {
  margin: 0 auto;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
main #img_mask {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid black;
}
main #img_mask img {
  height: 400px;
  transform: translateY(-25%);
}
main #texto_sobre {
  text-align: center;
  color: #000;
  font-size: 12px;
}
main #card_box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  width: 100%;
  margin-top: 20px;
}
main #card_box .card {
  width: 150px;
  height: 150px;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0px 5px 0px black, 1px 1px 5px black;
  transition: all 0.1s ease-in;
}
main #card_box .card:hover {
  scale: 1.1;
}
main #card_box .card p {
  color: #000;
  font-size: 12px;
  font-weight: bold;
}/*# sourceMappingURL=style.css.map */