.main {
  padding: 10px 10px 120px;
}
.main-grid {
  display: grid;
  gap: 20px;
  justify-items: center;
  align-items: center;
  text-align: center;
  max-width: 850px;
}
h1 {
  text-transform: uppercase;
  font-size: 2.25rem;
  font-family: "Overdrive";
  line-height: 1.2em;
}
h1 span {
  color: var(--main-cor);
}
.main-grid h2 {
  color: var(--cor-sec);
  font-size: 1.25rem;
}
.main-grid h2::after {
  content: "";
  height: 1px;
  width: calc(100% / 2);
  background-color: var(--main-cor);
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 7px;
}

.guarda-btn {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 600px) {
  h1 {
    font-size: 1.3rem;
  }
}
