html,
body{
	font-family: 'Nunito', Arial, Helvetica, sans-serif;
	padding: 0;
	margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    min-width: 320px;
    line-height: 1.5;
    color: #000;
    background-image: url(images/collage.png);
    background-color: #ffcbb3;
    color: #2b2e34;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

*,*:before,*:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

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%;
    vertical-align: baseline;
}

main{
	text-align: center;
	padding: 0 15px;
}

main .width-limiter{
	max-width: 1230px;
	margin: 50px auto;
	background-color: white;
	padding: 15px;
	box-shadow: 0 1px 3px rgba(0,0,0,.04);
	border-radius: 20px;
}

@media (min-width: 801px){
	main .width-limiter{
		padding: 30px;
	}
}

h1,h2,h3,h4,h5,h6{
    margin: 0 0 20px;
    font-weight: 700;
    text-transform: none;
    line-height: 1.25;
    font-family: 'Gobold Bold', Arial, Helvetica, sans-serif;
}

h1{
    font-size: 38px;
}

h2{
    font-size: 30px;
}

h3{
    font-size: 23px;
}

h4{
    font-size: 20px;
}

h5{
    font-size: 18px;
}

h6{
    font-size: 16px;
}

@media (min-width: 471px){
	h1{
	    font-size: 43px;
	}

	h2{
	    font-size: 33px;
	}

	h3{
	    font-size: 28px;
	}
}


p{
    font-size: 16px;
    margin: 0 0 20px;
}

a{
    text-decoration: underline;
    color: #28932f;

    &:hover{
        text-decoration: underline;
        color: #43b94a;
    }
}


hr{
	border: none;
	margin: 30px 0;
	height: 2px;
	width: 100%;
	background-color: #43b94a;
}

.logo, a.munson-logo{
	width: 100%;
	max-width: 600px;
	margin: 0 auto 50px;
	overflow: hidden;
	text-indent: -99999px;
	background-image: url(images/logo.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    font-size: 0;
    line-height: 0px;
    display: block;
}

.logo:after, a.munson-logo:after{
	content:'';
	display: block;
	padding-bottom: 46%;
}

a.munson-logo{
	background-image: url(images/munson-logo.png);
	max-width: 400px;
	margin: 50px auto 0;
}

a.munson-logo:after{
	padding-bottom: 15%;
}

main ol.results{
	padding: 0;
	margin: 0 0 15px;
	list-style: none;
	text-align: center;
}

main ol.results img{
	max-width: 100%;
	height: auto;
	height: auto;
	margin-bottom: 10px;
}

main ol.results .title{
	font-weight: 600;
	font-size: 18px;	
}

@media (min-width: 801px){
	main ol.results{
		display: -ms-flex;
		display: -webkit-flex;
	    display: flex;
	    justify-content: space-between;
	    align-items: center;

	}

	main ol.results li{
		flex-grow: 1;
	    flex-shrink: 0;
	    flex-basis: 100%;
	    max-width: calc((100% - 60px)/3);
	}

	main ol.results img{
		max-height: 300px;
	}
}

a.button{
	font-family: 'Gobold Bold', Arial, Helvetica, sans-serif;
    font-size: 35px;
    padding: 15px 30px;
    position: relative;
    z-index: 2;
    display: inline-block;
    text-decoration: none;
    color: #2b2e34;
    border: 6px solid #43b94a;
	border-radius: 100%;
}

a.button:hover{
    text-decoration: none;
    color: #fff;
    background-color: #43b94a;
    -webkit-animation: none;
    -moz-animation: none;
    animation: none;
}

a.button {
    -webkit-animation: rock 1.5s linear 1;
    -moz-animation: rock 1.5s linear 1;
    animation: rock 1.5s linear 1;
}


@-moz-keyframes rock { 
    0% { -moz-transform: rotate(0deg); } 
    25% { -moz-transform: rotate(-3deg); }
    50% { -moz-transform: rotate(0deg); } 
    75% { -moz-transform: rotate(3deg); } 
    100% { -moz-transform: rotate(0deg); } 
}
@-webkit-keyframes rock { 
    0% { -webkit-transform: rotate(0deg); } 
    25% { -webkit-transform: rotate(-3deg); }
    50% { -webkit-transform: rotate(0deg); } 
    75% { -webkit-transform: rotate(3deg); } 
    100% { -webkit-transform: rotate(0deg); } 
}
@keyframes rock {  
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg);} 
    25% { -webkit-transform: rotate(-3deg);transform: rotate(-3deg);}
    50% { -webkit-transform: rotate(0deg); transform: rotate(0deg);} 
    75% { -webkit-transform: rotate(3deg); transform: rotate(3deg);} 
    100% { -webkit-transform: rotate(0deg); transform: rotate(0deg);} 
}