@charset "UTF-8";


/* =====================================

1. Eric Meyer's CSS Reset v2.0.

======================================== */

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{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}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:none}table{border-collapse:collapse;border-spacing:0}

 html {
     height: auto;
     min-height: 100%;
  }

body {
	font-family: "Lora";
	font-size:normal 100%;
	font-style: normal;
	font-weight:400;
	color:#333333;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	background-color: #5ecc3a;
	background: linear-gradient(120deg,#f5d973, #8bdadb);
    background-size: 400% 100%;
    animation: gradient 30s linear infinite;
    animation-direction: alternate;
	//* background-image: linear-gradient(120deg, #5ecc3a 20%, #d6f3d8 100%);*//
}

@keyframes gradient {
    0% {background-position: 0%}
    100% {background-position: 100%}
}

.container {
	max-width:580px;
	margin: 0 auto;
	padding:100px;
	font-size:1.1em;
	line-height:1.2em;
}

	@media screen and (max-width: 400px) {
		.container {
			max-width:100%;
			padding:50px;
			overflow: hidden;
			margin: 0 auto;
			font-size:1.25em;
			line-height:1.3em;
		} }

a:link { color:#0D47A1; text-decoration:none; }
a:visited { color:#0D47A1; text-decoration:none; }
a:hover { color:#0D47A1; text-decoration:none; border-bottom:2px solid #1976D2; }
a:active { color:#0D47A1; text-decoration:none; }

p {
  margin-bottom: 10px;
  padding:0px;
}


h1 {
	font-size: 130%;
	font-weight: 500;
	padding-bottom: 35px;
}

ul {  
    list-style: none; 
    text-indent: -27px; /* key property */
    margin-left: 20px; /* key property */
    
}

ul > li {
	padding-bottom: .6em;
}

ul > li:before {
	content: "— ";
}

.copyright {
	font-size: .8em;
	font-style: italic;
}

.underline {
	border-bottom:2px solid #576573;
}
