@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --bg-blue-primary: #1f3763;
  --bg-white: #fff;
}

*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

.container {
  max-width: 1240px;
  padding-inline: 1rem;
  margin-inline: auto;
}

body {
  font-family: "Poppins", sans-serif;
}

img {
  width: 95%;
}

.hero {
  background-color: var(--bg-blue-primary);
}

.hero {
  height: 90vh;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  color: #fff;
  font-size: 3.5rem;
}

.hero a {
  display: inline-block;
  margin-top: 1rem;
  border: 1px solid #fff;
  color: #fff;
  padding: 1.2rem 2.5rem;
  text-decoration: none;
}

article p {
  margin: 10px 0;
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem !important;
  }

  h2 {
    font-size: 1.7rem !important;
  }

  p {
    font-size: 1.2rem !important;
  }
}
