* {
	margin: 0px;
	padding: 0px;
}

a {
	text-decoration: none;
}

body {
	background-color: rgb(100, 100, 100);
	background-image: url('bg.png');
	min-width: 300px;
}

div, span, ul, li , a {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 16px;
	color: black;
}

ul {
	list-style-type: none;
}
ul li::before {
	content: '–';
	display: inline-block;
	position: relative;
	width: 0;
	left: -1em;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes descAnim
{
0%	{color: rgba(0,0,0,0.2);}
30%	{color: rgba(0,0,0,1);	}
70%	{color: rgba(0,0,0,1);	}
100%{color: rgba(0,0,0,0.2);}
}

/* Standard syntax */
@keyframes descAnim
{
0% 	{color: rgba(0,0,0,0.2);}
30%	{color: rgba(0,0,0,1);	}
70%	{color: rgba(0,0,0,1);	}
100%{color: rgba(0,0,0,0.2);}
}

.header {
	background-color: rgba(255,160,20,0.8);
	padding: 15px 10px;
	text-align: center;
	margin-top: 40px;
}
.header .content {
	display: inline-block;
	text-align: left;
}
.header .name {
	display: inline-block;
	position: relative;
	z-index: 2;
	
	font-size: 48px;
	font-weight: bold;
	letter-spacing: 7px;
	white-space: nowrap;
	
	padding: 5px 10px;
	margin-right: 15px;
	background-color: #fbead1; /** /rgba(255,255,255,.8);/**/
	border: solid 1px white;
	border-radius: 5px;
}
.header .desc {
	position: relative;
	z-index: 1;
	border: solid 1px white;
	border-radius: 3px;
	
	font-size: 26px;
	font-style: italic;
	font-variant: small-caps;
	
	padding: 10px 10px 5px 5px;
	margin: -10px 0 0 15px;
}
@media (max-width: 700px) {
	.header {
		margin-top: 0;
    }
    .header .name {
		font-size: 38px;
		letter-spacing: 5px;
    }
	.header .desc {
		font-size: 20px;
	}
}

.anim {
/* Chrome, Safari, Opera */
-webkit-animation-name: descAnim;
-webkit-animation-duration: 4s;
-webkit-animation-timing-function: linear;
-webkit-animation-delay: 0s;
-webkit-animation-iteration-count: infinite;
/** /-webkit-animation-direction: alternate;/**/
/* Standard syntax */
animation-name: descAnim;
animation-duration: 4s;
animation-timing-function: linear;
animation-delay: 0s;
animation-iteration-count: infinite;
/** /animation-direction: alternate;/**/
}

.body {
	box-sizing: border-box;
	margin: 0 auto 20px;
	padding: 0 20px 20px;
	max-width: 600px;
	background-color: rgba(220, 220, 220, 0.6);
	border-radius: 0 0 3px 3px;
	line-height: 2em;
}

.body .head {
	font-size: 21px;
	padding: 1em 0 0.3em;
}

.body .content {
	margin-left: 1.5em;
}
					