html, body, div, span, h1, h2, h3, p, a, input, select, textarea, small, b, u, i, center, ul, li, form, article, aside, section, footer, header, menu, nav, time, mark, audio, video, button {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
    vertical-align: baseline;
    line-height: 1.7;
    color: #2d3239;
	box-sizing: border-box;	
	-webkit-box-orient: vertical;
}
body {
    margin: 0 auto;
	box-sizing: content-box;
	max-width: 62.5em;
}
header {
    font-size: 36px;
    display: grid;
    height: 100px;
    align-items: center;
    text-align: center;
	color: white;
	background: brown;
}
header a {
	color: white;
}
header, aside, section {
	margin-bottom: 10px;
}
footer{
    display: block;
	clear: both;
}
h1, h2, h3 {
	line-height: 1.2;
}	
h1 {
    font-size: 36px;
}
h2 {
    font-size: 30px;
}
h3 {
    font-size: 24px;
}
p {
    margin: 20px 0;
    white-space: pre-line;
}
ol, ul {
    list-style: none;
}
INPUT, TEXTAREA, SELECT {
    font-size: 16px;
    width: 100%;
    padding: 6px 8px;
    border: 1px solid #000;
    -webkit-appearance: none;
}
TEXTAREA {
    min-height: 100px;
    overflow: auto;
}
A {
    text-decoration: none;
    color: brown;
}
A:hover {
    text-decoration: underline;
}
IMG {
    border:  0;
	max-width: 100%;
}
aside {
    float: left;
	width: 30%;
}
section {
    float: right;
    padding-left: 10px;
	width: 70%;
}
button {
    border: none;
    display: inline-block;
    padding: 8px 16px;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background-color: gainsboro;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
}
button:hover {
    color: #000 !important;
    background-color: #ccc !important;  
}
.show {display:block; position: inherit;}
.frontpage li a {
	background-color: brown;
	display: block;
	margin-bottom: 5px;
	padding: 5px;
	color: white;
	border-radius: 5px;
}
.frontpage li a::before, header a::before {
	content: "🎅";
	margin-right: 5px;
}
header a::after {
	content: "🎅";
	margin-left: 5px;
}
@media (min-width: 320px) and (max-width: 600px) {
    body {
        width: 100%;
		box-sizing: inherit;
    }
    aside {
        width: 100%;
		padding: 0 10px;
    }
    section {
        width: 100%;
        padding: 0 10px;
    }   
	IMG {
		width: 100%;
	}
	header {
		font-size: 24px;
	}
}
