@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap");
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
}

header > div > div,
main > div > div,
footer > div > div {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.6rem;
}

/* tipografia e diagramação */
h1 {
  margin: 2rem auto;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.1;
}

h2 {
  margin: 2rem auto;
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.1;
}

h3 {
  margin: 2rem auto;
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.1;
}

h4 {
  margin: 2rem auto;
  font-size: 2.2rem;
  line-height: 1.1;
}

p {
  margin: 1.6rem 0;
  line-height: 1.1;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* "atalhos" */
.mt0 {
  margin-top: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.tcenter {
  text-align: center !important;
}

.d-flex_row {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.d-flex_column {
  display: flex;
  flex-direction: column;
  align-items: center;
}/*# sourceMappingURL=main.css.map */