body {
	margin:0;
	padding:10px 50px;
	background:#F1EFE2;
	font-size: 1.6em;
	font-family: georgia, "trebuchet ms", arial, serif;
}
h1 {
	margin-top: 20px;
	margin-bottom: 40px;
	color: #345;
	text-align: center;
	text-shadow: 1px 1px #fff;
}
h2 {color: #678;text-align: center;text-shadow: 1px 1px #fff;font-size:1.1em}
a {
	color: #123;
}

#main p {
	display: inline-block;
	padding: 10px;
	background: #6B9A49;
	color: #fff;
	
}

[data-tip] { /* data-tip attribute selecting */
    position: relative;
    cursor: help;
    border-bottom: 1px dotted #aaa;
}
[data-tip]:hover:after {
    content: attr(data-tip); /* grabbing data-tooltip value */
    position: absolute;
    top: 1.5em; left: 0;
    white-space: nowrap; /* no wrapping */
    padding: 5px 10px;
    background: #E69B00;
    color: #fff;
}