/* roboto-slab-300 - latin */
@font-face {
    font-family: 'Roboto Slab';
    font-style: normal;
    font-weight: 300;
    src: local(''),
         url('/site/assets/fonts/roboto-slab-v12-latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('/site/assets/fonts/roboto-slab-v12-latin-300.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }

/* atkinson-hyperlegible-regular - latin */
@font-face {
    font-family: 'Atkinson Hyperlegible';
    font-style: normal;
    font-weight: 400;
    src: local(''),
         url('/site/assets/fonts/atkinson-hyperlegible/atkinson-hyperlegible-v1-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('/site/assets/fonts/atkinson-hyperlegible/atkinson-hyperlegible-v1-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  
  /* atkinson-hyperlegible-700 - latin */
  @font-face {
    font-family: 'Atkinson Hyperlegible';
    font-style: normal;
    font-weight: 700;
    src: local(''),
         url('/site/assets/fonts/atkinson-hyperlegible/atkinson-hyperlegible-v1-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('/site/assets/fonts/atkinson-hyperlegible/atkinson-hyperlegible-v1-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  
  
html, body{
    font-family: var(--font-sans);
    font-weight: 200;
    color: var(--dark);

}

#app{
    font-size:1.25rem;
}

a{
    text-decoration: none;
    color:var(--theme);
    transition: var(--transition);
}

footer a{
    color:var(--pale);
}

.link-white{
    color:white;
}

.link-no-decoration{
    text-decoration: none;
}

a:hover,
a:focus{
    color:var(--red);
    text-decoration: underline;
    transition: var(--transition);
}

blockquote {
    display: block;
	font-style: italic;
	padding: 0 0.5rem;
	margin: 1rem 3rem;
    border-left: 6px solid #ccc;
}


caption,
.caption{
    display: block;
    font-size: 0.8rem;
    text-align: center;
    background-color: var(--dark);
    padding:0.4rem;
    color:white;
}

.contented{
	display: flex;
	flex-direction: column;
	gap: var(--gap-small);
}

.contented p{
	margin:0;
	max-width: 64ch;
}

.has-lede p:first-of-type{
    font-weight: var(--strong);
    font-size: 1.1rem;
}

h1, h2, h3{
    font-family: var(--heading-font);
}

h1{
    font-weight: normal;
    font-size: 3rem;
    margin:0 1.5rem;
}

h2{
    margin:0 0 1rem 0;
    font-weight: normal;
    font-size: 2rem;
}


@media (max-width: 768px) {
 
}

.text-condensed{
    font-family: var(--font-condensed);
}

.text-70{
    font-size:0.7rem !important;
}

.text-80{
    font-size:0.8rem !important;
}

.text-90{
    font-size:0.9rem !important;
}

.text-100{
    font-size:1rem;
}

.text-110{
    font-size:1.1rem;
}

.text-120{
    font-size:1.2rem;
}

.text-140{
    font-size:0.8rem;
}

.text-150{
    font-size:1.5rem;
}

.text-160{
    font-size:1.6rem;
}

.text-180{
    font-size:1.8rem;
}

.text-200{
    font-size:2rem;
}

.text-250{
    font-size:2.5rem;
}

.text-300{
    font-size:3rem;
}

.text-blue{
    color: var(--blue);
}

.text-centre,
.text-center{
    text-align: center;
}

.text-decoration-no{
    text-decoration: none;
}

.text-measure {
	max-width: 620px;
}

.text-right{
    text-align: right;
}

.text-smaller,
.text_smaller{
    font-size:var(--smaller) !important;
} 

.text-strong,
strong{
    font-weight:var(--strong) !important;
} 

.text-upper{
    text-transform: uppercase;
}

.text-white{
    color: white !important;
}

.max-copy-length{
    max-width: 680px;
}


.row-striped:nth-of-type(2n) {
	background-color: #efefef;
}

.rainbow_box{
	background-color:#444; 
	margin:2rem 0; border-radius: 16px; padding-inline:0.5em;
}
.rainbow_box p{
	margin:0;padding:0;
}

.rainbow{
	background: linear-gradient(to left, #ef5350, #f48fb1, #7e57c2, #2196f3, #26c6da, #43a047, #eeff41, #f9a825, #ff5722);
	  -webkit-background-clip: text;
	  background-clip: text;
	  -webkit-text-fill-color: transparent;
}