main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
section {
  width: 80%;
  display: flex;
  justify-content: space-between;
}

.boletim-content {
  width: 80%;
  display: flex;
  justify-content: space-around;
  gap: 3rem;
  flex-wrap: wrap;
}
.boletim {
  max-width: 30rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 20rem;
  gap: 1rem;
  border-radius: 2rem;
  cursor: pointer;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.boletim a {
  width: 80%;
  height: 80%;
  border-radius: 2rem;
}
.boletim img {
  width: 100%;
  height: 100%;
  border-radius: 2rem;
}
.image-frame {
    display: inline-block;
    padding: 10px;
    border: 1px solid #363636;
    box-shadow: 3px 4px 5px 0px rgba(0,0,0,0.28);
-webkit-box-shadow: 3px 4px 5px 0px rgba(0,0,0,0.28);
-moz-box-shadow: 3px 4px 5px 0px rgba(0,0,0,0.28);
}
.imgusedcard {
  max-width: 22rem;
  max-height: 18.5rem;
  border-radius: 0rem;
}
.boletim:hover {
  transform: scale(105%);
  transition-property: transform;
  -webkit-box-shadow: -1px -1px 24px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px -1px 24px 0px rgba(0, 0, 0, 0.75);
  box-shadow: -1px -1px 24px 0px rgba(0, 0, 0, 0.75);
}
.boletim-novo p {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}
