@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/PlusJakartaSans-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/PlusJakartaSans-Bold.woff2") format("woff2");
  font-display: swap;
}



body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  background: #fff;
  color: #5f6b70;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
header {
  padding: 30px 20px 0;
  position: fixed;
}
header img {
  height: 35px;
}
main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}
.main-inner {
  max-width: 800px;
  width: 100%;
}
h1 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #2a3447;
  font-size: 3.6rem;
}
h3 {
  margin-top: 50px;
  color:#8bb838;
}

p {
  font-size: 1.2rem;
  line-height: 1.8rem;
  font-weight: 300;
  margin: 1.8rem 0;
}

a {
  color:#5f6b70;
  text-decoration: underline;
}

a i {
  color: white;
}

footer {
  background: #8bb838;
  color: white;
  padding: 30px 20px 30px;
}

.footer-grid .footer-left p {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  margin: 0.2rem 0;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-end;
}
.footer-left {
  min-width: 250px;
}
.footer-right {
  text-align: right;
  min-width: 250px;
}
.footer-nav {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-nav a,
.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding-left: 30px;
  line-height: 1.6rem;
}
.footer-links {
  margin-top: 15px;
  text-align: right;
}
.social {
  margin-top: 10px;
  font-size: 40px;
}


@media screen and (max-width: 1200px) {
    h1 {
        font-size: 3.6rem;
    }
}

@media screen and (max-width: 960px) {
    h1 {
        font-size: 2.8rem;
        margin: 1.2rem 0 2rem;
    }
}