/* Reset */
* {
  padding: 0;
  border: 0;
  margin: 0;
  box-sizing: border-box;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Geral */

body {
  font-family: "Montserrat", sans-serif;
  color: #3a3a3a;
}
a {
  display: block;
  text-decoration: none;
  color: #fff;
}

.section-bg {
  background-color: #e6eef5;
}
.container {
  max-width: 1400px;
  height: 100vh;
  padding: 60px 120px;
  display: grid;
  place-items: center;
  margin: 0 auto;
}
@media (max-width: 860px) {
  .container {
    padding: 40px;
  }
}

.main-section h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  text-align: center;
}
.main-section p {
  max-width: 30ch;
  line-height: 1.5;
  text-align: center;
}
.main-section a {
  padding: 15px 40px;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: bold;
  background: #25d366;
}
.main-section a:hover {
  background: #2bf173;
  transition: 0.5s;
  cursor: pointer;
}
