/** ----------------------------------------------------------
 *
 * Contains the generic theme typography styles
 *
 *    Include your notes or table of contents here
 *
 *    Include color hex's or values of your grid
 *      #333333             - body
 *      #B80000             - links, headings
 *      #D80000             - links on hover
 *      5px Vertical grid   - based on multiples of 5px, eg 10px, 15px, 20px, 25px...
 *
 *    @author Your Name <email@gmail.com>
 *
 * ------------------------------------------------------- */

/* BASE TYPOGRPHY */

/* These are the default styles for the Simple theme */
body {
    font-size: 11px; /* This overrides the browsers default font size */
    line-height: 20px; /* If you change the font-size make sure you change the line-height value as well - the usual ratio is around 1.5 (font-size x 1.5 = line-height) */
    margin-bottom: 0;
    color: #634E42;
    font-family: "Open Sans";
}

.typography {
    font-family: "Open Sans";
    font-size: 11px;
    font-weight: 300;
}

.typography p { 
    /*font-size: 11px; 
    line-height: 20px;*/
    color: #634E42;

    font-size: 18px;
    line-height: 28px
}

.typography strong{
    font-weight: 600;
}

.typography em{
    font-style: italic;
}

/* ----------- LINK ------------- */

.typography a {
    text-decoration: none;
    color:#634E42;
    transition: .3s;
}

.typography a:hover {
    text-decoration: none;
    color:#634E42;
}

a{

    text-decoration: none;

}

/* ---------- INTESTAZIONI ----------- */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    font-family: "Open Sans";
}

.typography h1 {
  font-size: 36px;
  line-height: 45px;
  margin: 0 0 25px 0;
  padding-bottom: 5px;
}
.typography h2 { font-size: 28px; line-height: 35px; margin-bottom: 10px; }
.typography h3 { font-size: 22px; line-height: 30px; margin-bottom: 10px; }
.typography h4 { font-size: 18px; line-height: 25px; margin-bottom: 5px; }
.typography h5 { font-size: 16px; line-height: 20px; margin-bottom: 5px; }
.typography h6 { font-size: 14px; line-height: 20px; font-weight: bold; margin-bottom: 5px; }
