body {
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: 'Georama', sans-serif;
    font-size: 1.25rem;
    color: #222;
    background: #f6fdfd;
    height: 90vh;
}

h1 {
	margin: 0 0 50px;
	padding: 0;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

li {
	margin: 0 0 16px;
	padding: 0;
}

a {
	padding: 2px 4px;
	color: #33cc00;
	display: inline-block;
	text-decoration: none;
	transition: 0.3s;
}

a:hover {
	background: #99ff66;
	text-decoration: none;
	transition: 0.3s;
	color: #222;
}

@media (max-width:767px) {

	li {
		margin: 0 0 30px;
		padding: 0;
	}

}