/* Type Scale */
h1, .style-h1,
h2, .style-h2,
h3, .style-h3,
h4, .style-h4,
h5, .style-h5,
h6, .style-h6 {
    color: var(--grey900);
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 0;
    line-height: 1.2;
    /*This fixes an issue with Chrome rendering fonts*/
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

h1, .style-h1{
	font-size: 4rem;
}

h2, .style-h2 {
	font-size: 3rem;
}

h3, .style-h3 {
	font-size: 2rem;
}

h4, .style-h4 {
	font-size: 1.5rem;	
}

h5, .style-h5 {
	font-size: 1.25rem;
}

h6, .style-h6 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

p{
    font-size: 1rem;
    font-weight: 400;
    color: var(--grey700);
    margin: 1.5rem 0 ;
}

main .column ul {
    text-align: start;
    margin : 0 0.5rem;
    padding: 1rem 1rem;
}

main .column li {
    color: var(--grey700);
    font-size: 1.25rem;
    list-style: disc;
    padding: 0rem 1rem 1rem 0.5rem;
}


@media only screen and (max-width: 1023px) {
  
    h1, .style-h1{
        font-size: 3rem;
    }

    h2, .style-h2 {
        font-size: 2rem;
    }

    h3, .style-h3 {
        font-size: 1.5rem;
    }

    h4, .style-h4 {
        font-size: 1.25rem;	
    }

    h5, .style-h5 {
        font-size: 1.125rem;
    }

    h6, .style-h6 {
        font-size: 1rem;
        font-weight: 500;
        margin-bottom: 1rem;
    }

}

