* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
min-height: 100vh;
padding: 1em;
background-color: #254222;
background: rgb(37,66,34);
background: linear-gradient(0deg, rgba(37,66,34,1) 0%, rgba(0,0,0,1) 170%);
font-family: sans-serif;
color: #ece2b1;
font-size: 90%;
line-height: 1.4em;
}
strong {
font-size: 110%;
white-space: nowrap;
}
div { max-width: 36em; }
a { color: #ece2b1; }
.define {
position: relative;
cursor: pointer;
text-decoration: dotted underline;
white-space: nowrap;
}
.define span {
white-space: normal;
text-decoration: none;
visibility: hidden;
width: 18em;
background-color: green;
opacity: 0.95;
color: black;
font-style: italic;
border-radius: .5em;
padding: 1em;
position: absolute;
z-index: 1;
top: 1.5em;
left: 0;
}
.define:hover span {
visibility: visible;
}
.define a {
color: black;
}
.buttons a {
display: inline-block;
width: 12em;
background-color: #ece2b1;
box-shadow: .1em .1em .1em rgba(0,0,0,0.3);
border-radius: .5em;
margin: 0 1em 1em 0;
padding: 0 0 .3em 0;
color: #000000;
text-decoration: none;
text-align: center;
white-space: nowrap;
overflow: hidden;
font-size: 80%;
line-height: 150%;
}
.buttons img { width: 12em; }
img.avatar {
width: 10em;
border-radius: .3em;
margin: .3em 1em 0 .3em;
float: left;
}
h1, h2 {
font-size: 1.2em;
margin: 2em 0 .8em;
}
h3 {
font-size: 1.1em;
line-height: 100%;
margin: .5em 0 .3em;
}
p, ul { margin: 0 0 1em 0; }
li { margin: 0 0 .5em 1em; }

.buttons li, .dense li { margin: 0 0 .1em 0; }
.buttons ul, ul.dense { list-style-type: none; }
.buttons ul { margin: .2em 0 .5em; }

summary {
list-style-type: none;
pointer-events: none;
margin: 1em 0 .5em 0;
}
details p, blockquote {
font-size: 90%;
font-style: italic;
margin: .5em .5em 1em;
}
#toggleDetails {
padding: .5em;
font-size: 1em;
}
.logo {
width: 3.5em;
border-radius: .5em;
margin-right: 1em;
vertical-align: middle;
}
.nav a {
text-decoration: none;
}
.menu {
display: inline-block;
float: right;
}
#toggleMenu {
background-color: green;
opacity: 0.95;
border-radius: .5em;
display: none;
text-align: right;
position: absolute;
right: 1.5em;
top: 4em;
}
.menu a, .menu strong {
font: 1.2em bold;
color: white;
padding: 1em;
text-decoration: none;
display: block;
border-radius: .5em;
}
.menu a:hover {
background-color: #ddd;
color: black;
}
.active {
background-color: #04AA6D;
color: white;
}
.hamburger {
cursor: pointer;
display: block;
position: absolute;
right: 1.5em;
top: 1.5em;
}
.bar1, .bar2, .bar3 {
width: 2rem;
height: .3rem;
background-color: green;
margin: .3rem 0;
transition: 0.4s;
}
.change .bar1 { transform: translate(0, .6rem) rotate(-45deg); }
.change .bar2 { opacity: 0; }
.change .bar3 { transform: translate(0, -.6rem) rotate(45deg); }
* 