/* 
this first bit is a selection of font stacks
from https://gist.github.com/don1138/5761014

Choose one...
*/

html, body{

    font-family:  "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
    color: var(--blackish);
    font-weight: var(--text-light);
    line-height: calc(1ex / 0.32);

}

a{
    color: var(--slime-anchor);
    transition: var(--transition);
    text-decoration: underline;
    text-decoration-color: inherit;
}

a:hover{
    color: var(--green-dark);
    text-decoration-color: var(--green-dark);
    transition: var(--transition);
}

.link-reverse{
    color:#fff;
    transition: var(--transition);
    text-decoration: underline;
}

.link-reverse:hover{
    color:var(--slime);
    text-decoration: none;
}

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

button{
    font-family: "Roboto Condensed", Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
}

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

h1, h2, h3, h4, h5,
.text-heading{
    font-weight: var(--text-strong);
    color: var(--green-dark);
    line-height: calc(1ex / 0.42);
}

h1 {
	font-size: 2rem;
    margin: 1rem;
}


@media (min-width: 992px) {

    h1 {
        font-size: 2.8rem;
    }
}

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

hr{
    border: 0;
    height: 1px;
    background: #ccc;
}

.hr-dotted{
    border: 0;
    height: 1px;
    background: transparent;
    border-bottom:1px var(--grey) dotted;
}

.hr-black{
    border-bottom:1px black dotted;
}

p, #main-content li{
    line-height: 1.6rem;
    width:75ch;
    max-width: 100%;
    margin: 1rem 0 1.2rem 0;
    letter-spacing:0.02rem;
}

.text-condensed{
    font-family: 'Roboto Condensed', Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.text-measure{
    max-width: 74ch;
}

.text-measure-pixels{
    max-width:560px;
}

/* for large text we can go a bit wider */
.text-measure-large{
    max-width: 680px;
}

.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-130{
    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-dark{
    color: var(--dark);
}



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

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

.text-regular{
    font-weight: var(--text-regular);
}

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

.text-sans{ 
    font-family: "Open Sans" , "Corbel", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
}

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

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

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
