body { background-color: white; }
* { padding: 0px; margin: 0px; line-height: 100%; }

/*
font-family: 'Open Sans', sans-serif;
font-family: 'Poppins', sans-serif;
*/

.container { margin: 100px 0px 0px 0px; }

h1.desktop { display: block; }
h1.mobile { display: none; }
h1 { font-family: 'Poppins', sans-serif; font-weight: 800; text-transform: uppercase; font-size: 60px; padding: 0px 40px; box-sizing: border-box; margin-bottom: 10px; }
h2 { font-family: 'Open Sans', sans-serif; font-weight: 400; font-size: 17px; line-height: 125%; padding: 0px 40px; box-sizing: border-box; margin-bottom: 40px; }
ul { font-family: 'Open Sans', sans-serif; font-weight: 400; font-size: 17px; list-style-type: none; padding: 0px 40px; box-sizing: border-box; }
ul li { padding-bottom: 10px; }
ul a { text-decoration: none; color: blue; } 
ul a:hover{ text-decoration: underline; } 

@media screen and (max-width: 800px)
{
	h1.desktop { display: none; }
	h1.mobile { display: block; }	
	h1 { font-size: 32px; }
}

