/* with padding, gives about 992px for content */
/* Site-wide CSS */
/* override this from the "overrides.css", whereever that is, because it is not
   present in the .net environment */
.aspect-ratio-4x3 {
  aspect-ratio: 4/3;
}

/* coupled with site-content-div on the div, sets max content area */
.site-main {
  display: grid;
  place-items: center;
}

/* under main, the container class that wraps the content */
.site-content {
  max-width: 940px;
  font-weight: 400;
  letter-spacing: 0px;
  font-size: 18px;
  font-family: "EB Garamond";
  line-height: 1.5rem;
  font-style: normal;
  /*color: SiteVars.$font-black-color; use the bootstrap defined color */
  box-sizing: border-box;
  background-color: white;
  margin: 3rem 2rem 0 2rem; /* top clockwise (trbl) */
  padding: 0 1rem 0 1rem;
}
.site-content h1 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.site-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.site-content h3 {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 13px;
  /* not sure how default bs-heading-color became black */
  color: rgba(26, 26, 26, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
}
.site-content h4 {
  font-family: "EB Garamond";
  font-weight: 700;
  font-size: 16px;
  color: rgba(26, 26, 26, 0.7);
  letter-spacing: normal;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}
.site-content hr {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

/* Green text titles that are also links */
.site-green-link-div {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.site-green-link-div a {
  text-decoration: none;
  color: #3d9991;
  font-weight: 700;
  font-style: italic;
  padding-bottom: 20px;
}

/* base class for the black square buttons */
.site-black-button {
  display: inline-block;
  width: auto;
  height: auto;
  font-family: "Montserrat";
  font-size: 12px;
  font-weight: 600;
  padding-left: 8px;
  padding-right: 8px;
  letter-spacing: 0.15em;
  color: white;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  background-color: black;
}

.site-big-green-button {
  font-size: 14px;
  padding: 20px 35px;
}

.site-small-green-button {
  font-size: 12px;
  padding: 10px 25px;
}

/* base class for the green buttons */
.site-base-green-button, .site-big-green-button, .site-small-green-button {
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Montserrat";
  font-weight: 600;
  letter-spacing: 0.15em;
  color: white;
  text-align: center;
  display: inline-block;
  width: auto;
  height: auto;
  border-color: #36b3a8;
  border-radius: 300px;
  background-color: #36b3a8;
}

/*# sourceMappingURL=Site.css.map */
