@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
  --color-primary: #ed6e39;
  --color-secondary: #194093;
  --font-body: "Inter", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  font-family: var(--font-body);
  overflow-x: hidden;
}

h1 {
  font-size: 48px;
}

@media (min-width: 768px) {
  h1 {
    font-size: 72px;
  }
}

h2 {
  font-size: 30px;
}
@media (min-width: 768px) {
  h2 {
    font-size: 60px;
  }
}
h3 {
  font-size: 24px;
}
@media (min-width: 768px) {
  h3 {
    font-size: 48px;
  }
}
h4,
h5 {
  font-size: 20px;
}
@media (min-width: 768px) {
  h4,
  h5 {
    font-size: 36px;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-align: center;
  color: var(--color-secondary);
  margin-top: 5px;
  margin-bottom: 5px;
}

h1 {
  font-size: 30px;
}

@media (min-width: 768px) {
  h1 {
    font-size: 60px;
  }
}

a {
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

@media (min-width: 768px) {
  a {
    font-size: 20px;
  }
}
p {
  font-size: 14px;
}
@media (min-width: 768px) {
  p {
    font-size: 16px;
  }
}
img {
  width: 100%;
}

section {
  max-width: 1240px;
  width: 90%;
  padding: 0 20px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  section {
    padding: 0 40px;
    width: 100%;
  }
}

.center {
  display: flex;
  justify-content: center;
}

.container {
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
