/*
TYPOGRAPHY
*/


/* <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 400 to 700

 */

.sometype-mono {
  font-family: "Sometype Mono", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.contrail-one-regular {
  font-family: "Contrail One", serif;
  font-weight: 400;
  font-style: normal;
}

/* <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 200 to 1000

 */

.nunito {
  font-family: "Nunito", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

body {
  font-family: "Nunito", serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Contrail One", serif;
  font-weight: 400;
}

h1 {
  font-size: clamp(1rem, 3vw + 1rem, 2.5rem);
  margin: 1rem 0 0.5rem;
}

h2 {
  font-size: clamp(.8rem, 2vw + 1rem, 2rem);
  margin: 1.25rem 0 0.5rem;
}

h3 {
  font-size: 1.5rem;
  margin: 1.5rem 0 0.5rem;
}

p {
  font-size: 1rem;
  margin: 1.25rem 0 0.5rem;
  line-height: 1.5;
}

.usp-list {
  padding: 1rem 0 .5rem;
}

.usp-list li {
  position: relative;
  display: block;
  padding: .125rem 0 .125rem 3rem;
  font-size: clamp(.8rem, 2vw, 1.25rem);
  font-family: "Contrail One", serif;
  font-weight: 400;
  font-style: normal;
  background: url('../img/checkmark.svg') no-repeat left top;
}
small {
  font-size: .75rem;
  letter-spacing: .05rem;
  font-weight: 200;
}

a.link {
  color: #F0F0E5;
  text-decoration: underline 1px;
  font-weight: 400;
}

a.link:hover,
a.link:focus-visible {
  padding-left: .25rem;
}

caption {
  text-align: left;
}

ol {
  padding: 1rem 0 .5rem 1.5rem;
  list-style-type: decimal;
}

ul.list {
  padding: 1rem 0 .5rem 1.5rem;
  list-style-type: disc;
}

ul.list .list {
  padding-top: 0;
  font-size: .75rem;
  letter-spacing: .05rem;
  list-style-type: circle;
}

ol li {
  padding-bottom: .5rem;
}
