/* TYPO */
@font-face {
  font-family: 'Montserrat Bold';
  src:  url('assets/Montserrat-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat Regular';
  src:  url('assets/Montserrat-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

h1, h2 {
  font-family: 'Montserrat Bold', sans-serif;
  color: #222;
}

p, ul {
  font-family: 'Montserrat Regular', sans-serif;
  color: #222;
  font-size: 16px;
  line-height: 1.6;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
}

a {
  color: #2a7a78;
  text-decoration: underline;
  font-weight: 700;
}

.big-p {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* GENREAL */
main#innovert-landing {
  padding: 20px;
  margin: 50px auto 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#innovert-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

#innovert-intro {
  max-width: 800px;
  margin-bottom: 50px;
}

#innovert-directions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  gap: 20px;
}

#innovert-directions h2 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 24px;
}

#innovert-directions .innovert-directions_section {
  flex: 0 1 1fr;
  max-width: 450px;
  border: 1px solid #348F8C;
  border-radius: 5px;
  padding: 50px;
}

@media only screen and (max-width: 768px) {
  #innovert-directions h2 {
    font-size: 20px;
  }
  #innovert-directions .innovert-directions_section {
    padding: 20px;
  }
}