/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}


html {
	padding: 0.7rem; 
  	font-size: 22px;
  	line-height: 1.5;
  	background-color: #FC3B2D;
}



.h1 {
	font-family: "maple-web",sans-serif;
	font-style: normal;
	font-weight: 500;
	color: #032D5B;
	font-size: 2rem;
	line-height: 4.7rem;
	margin-bottom: 2.0rem;
	letter-spacing: 0.00rem;
}

.copy {
	max-width: 600px;
}

.intro {
	font-family: "maple-web",sans-serif;
	font-style: normal;
	font-weight: 400;
	color: #032D5B;
	font-size: 1.2rem;
	line-height: 1.9rem;
	margin-bottom: 1.5rem;
}

.small {
	font-family: "maple-web",sans-serif;
	font-style: normal;
	font-weight: 400;
	color: black;
	font-size: 0.9rem;
	line-height: 1.4rem;
	margin-bottom: 1.3rem;

}

a:link {
	color: #032D5B;
	text-decoration: underline;
 
}

a:hover {
	color: white;
	text-decoration: underline;
}


a:active {
	color: #032D5B;
	text-decoration: underline;
}


a:visited {
	color: #032D5B;
	text-decoration: underline;
}



#wurst {
    -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 2s; /* Firefox < 16 */
        -ms-animation: fadein 2s; /* Internet Explorer */
         -o-animation: fadein 2s; /* Opera < 12.1 */
            animation: fadein 2s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}











#wurst {
	margin: 0 auto;
	margin-top: 6.5rem;
	max-width: 630px;	
}

/* Tablet */

@media (max-width: 900px) {
  	html {
    font-size: 22px;
    padding: 1.8rem;
	}
	.h1 {
		font-size: 2rem;
		line-height: 3.7rem;
	}
}

/* Mobile */

@media (max-width: 500px) {
  	html {
    	font-size: 22px;
    	padding: 2rem;
		}
	.h1 {
		font-size: 1.0rem;
		line-height: 2rem;
		}
	.intro {
		font-size: 1.0rem;
		line-height: 1.6rem;
		margin-bottom: 1.1rem;
		}