/***** Mayer's CSS Reset *****/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a {
    text-decoration: none;
}

* {
    box-sizing: border-box;
}

*:focus{
	outline: none;
}

img {
/*  image-rendering: auto;
  image-rendering: crisp-edges;
  image-rendering: pixelated;*/
}





/***** Including fonts *****/

@font-face {
	font-family: 'MartinDemo';
	font-style: normal;
	font-weight: normal;
	src: local('MartinDemo'), url('Martin Demo.woff2') format('woff2');
}

@font-face {
	font-family: 'Inter-Regular';
	font-style: normal;
	font-weight: normal;
	src: local('Inter-Regular'), url('Inter-Regular.woff2') format('woff2');
}



/****** Scaffold Styles ******/

body {
    color: rgba(0, 0, 0, 0.86);
    font-family: 'Inter-Regular', ui-sans-serif, -apple-system, system-ui;
    background: #fff;
    -webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-o-font-smoothing: antialiased;
    position: relative;
}

.container{
	max-width: 580px;
	margin: 0 auto;
}

.clear{
    display: table;
    content: '';
    width: 100%;
    clear: both;
}

.left{
	float: left;
}

.visible-desktop{
	display: block;
}

.visible-mobile{
	display: none;
}

.header{
	margin: 112px 0 56px 0;
}

.image{
	width: 130px;
	height: 130px;
}

.image img{
	width: 100%;
}

ul {
	list-style-type: none;
	color:#000;
}

ul li{
	display: inline-block;
}

h1{
	font-family: 'MartinDemo', sans-serif;
	font-size: 56px;
	line-height: 64px;
	letter-spacing: 0px;
	margin-top: 5px;
	margin-left: 20px;
}

p, ul{
	font-family: 'Inter-Regular', sans-serif;
	font-size: 16px;
	line-height: 28px;
	margin-top: 10px;
	margin-bottom: 28px;
}

a{
	color: #0249DD;
}





/****** Media Queries *****/


@media(max-width: 540px){
	.container{
		max-width: 320px;
		margin: 0 auto;
		margin-bottom: 80px;
	}

	.header{
		margin: 80px 0 40px 0;
	}

	.image{
		width: 100px;
		height: 100px;
	}

	.image img{
		width: 100%;
	}

	h1{
		font-size: 52px;
		line-height: 56px;
		margin-top: 40px;
		margin-bottom: 0;
		margin-left: 0;
		letter-spacing: 2px;
		display: inline-block;
	}

	p, a{
		font-size: 16px;
		line-height: 28px;
	}

}





