.textleft {
    text-align: left;
}

.textcentre {
    text-align: center;
}

.textright {
    text-align: right;
}

p {
    margin: 0 0 20px 0;
}

/* Increase spacing between paragraphs.
   Do not use bottom margin because that also adds extra margin above the first elements in lists.
   Use top margin instead.*/
.paragraph {
  margin: 20px 0 0 0;
}

strong, b {
    font-weight: 600;
}

em, i {
    font-style: italic;
}

h1 {
    margin: 0 0 10px 0;
    font-weight: 700;
    font-family: "Montserrat";
    /* Do not transform post titles */
    /* text-transform: uppercase; */
    font-size: 36px;
    line-height: 38px;
    letter-spacing: -1px;
    color: #111;
}

h2 {
    margin: 30px 0 15px 0;
    font-weight: bold;
    font-family: "Montserrat";
    /* Unlike the original template, I don't want to have headings with uppercase because it's less readable */
    /* text-transform: uppercase; */
    font-size: 28px;
    line-height: 21px;
    letter-spacing: -0.5px;
    /* color: #111; */
    color: #A71E2E;
}

h3 {
    margin: 26px 0 13px 0;
    font-weight: 700;
    font-family: "Montserrat";
    font-size: 22px;
    line-height: 22px;
    letter-spacing: -0.4px;
    /* color: #111; */
    color: 	#ff9900;
}

h4, h5, h6 {margin: 20px 0 10px 0;
    font-weight: 600;
    font-family: "Montserrat";
    font-size: 18px;
    line-height: 18px;
    color: #0000ff;
}

ul {
    margin: 0 0 0px 35px;
    list-style-type: square;
}

ul li {
    padding: 0 0 0 2px;
}

ul ul {
    margin: 0 0 0 25px;
}

ol {
    margin: 0 0 20px 35px;
    list-style-type: decimal;
}

ol li {
    padding: 0 0 0 2px;
}

ol ol {
    margin: 0 0 0 25px;
}

hr {
    clear: both;
    float: left;
    width: 100%;
    padding: 0;
    margin: 30px 0 40px 0;
    border: none;
    border-top: 4px solid #A71E2E;
    text-align: center;
}

blockquote {
    background: #EEE;
    margin: 0 0 5px 0 !important;
    color: #555;
    border-left: 5px solid #A71E2E;
    padding: 15px;
    font-style: italic;
}

blockquote p {
    margin: 0;
}

blockquote p.author {
    text-align: right;
    font-size: 14px;
    letter-spacing: 2px;
    color: #999;
}

@media screen and (max-width: 768px) {

    .textcentre {
        text-align: left;
    }

    .textright {
        text-align: left;
    }

}


