/* <system section="theme" selected="17391345971658313646"> */
/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/
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 {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
a {
    text-decoration: none;
    color:black;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}

/***********************************************/

body {
    background-color: #EEEEEE;
}

#container {
    width:auto;
    max-width:1200px;
    min-width:480px;
    margin:0 auto;
    box-shadow: 0 0 8px gray;
    background-color:white;
}

#container-inner {
    width:90%;
    margin:0 auto;
    max-width:1140px;
    padding:30px;
}

/***** title *****/

#blog-title {
    text-align:center;
}

#title  {
    font-size:40px;
    margin-top:30px;
    margin-bottom:20px;
}

#blog-description {
    font-size:20px;
    margin-bottom:30px
}

/**** header ****/

#header-navigation{
    height:40px;
    margin-bottom:30px;
}

#header-menus {
    display:flex;
    justify-content: space-evenly;
}

.header-menu {
    text-align: center;
    width:10%;
}

.header-menu {
    display: block;
    padding: 0 0 5px;
    position: relative;
    text-decoration: none;
  }

.header-menu::before,
.header-menu::after {
  border-bottom: solid 2px gray;
  bottom: 0;
  content: "";
  display: block;
  position: absolute;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  width: 0;
}

.header-menu::before {
	left: 50%;
}
.header-menu::after {
	right: 50%;
}
.header-menu:hover::before,
.header-menu:hover::after {
	width: 50%;
}

/**** content ****/

#content-inner {
	display:flex;
}

aside {
	margin:10px;
	border: 1px solid black;
}

section {
    border:1px solid gray;
    border-radius: 8px;
    padding:20px;
		margin:10px;
	transition:0.5s;
}

section:hover {
	background-color:#EEEEEE;
}

.entry-title {
    font-size:30px;
    margin:10px 0;
}

.archive-entry-body {
    color:gray;
}
/* </system> */

/* <system section="background" selected="default"> */
/* default */
/* </system> */