* {
	box-sizing: border-box;
}
body {
	margin: 5px auto 0 auto;
	width: 590px;
}
p, h1, li {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 1.5;
}
p, li {
	margin: 0 0 5px 0;
	text-align: justify;
}
h1 {
	margin: 0 0 5px 0;
	text-align: left;
	line-height: 1.5;
	color: mediumseagreen;
}
a {
	color: blue;
}
h1 a {
	font-weight: normal;
	color: mediumseagreen;
	opacity: 0.6;
}
h1 a:hover {
	opacity: 1.0;
}
ul {
	list-style-type: circle;
	margin: 0;
}
.numbered {
	list-style-type: decimal;
}
article {
	margin: 0 0 30px 0;
	clear: both;
}
aside {
	width: 100%;
	height: 80px;
	border: 1px dashed blue;
	margin: 10px 0 10px 0;
	color: blue;
	display: grid;
	grid-template-columns: 1fr 79.2001px;
}
aside span {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}
aside p {
	text-align: left;
	font-style: italic;
	margin: 0 0 0 8px;
}
aside img {
	height: 100%;
	width: 100%;
	border-left: 1px dashed blue;
}
table {
	border: 1px solid black;
	border-collapse: collapse;
	width: 100%;
	margin: 10px 0 10px 0;
}
td {
	border: 1px solid black;
}
.stamp {
	height: 80px;
	width: 85px;
	border: 1px dashed blue;
	object-fit: contain;
}
#not-pkmn {
	object-fit: cover;
}
.nouveaux-mots {
	font-style: italic;
}
.wrapped-left, .stamp {
	float: left;
	margin-right: 5px;
}
.wrapped-right {
	float: right;
	margin-left: 5px;
}
.blockq {
	margin-left: 30px;
	font-style: italic;
}
.hanging-indent {
	padding-left: 30px; 
	text-indent: -30px; 
}
.emoji {
	height: 20px;
	margin-bottom: -5px;
}
pre {
	margin: 15px 0 15px 0;
}
footer h1 {
	text-align: right;
}
@media screen and (max-width: 600px) {
	body {
		width: auto;
		padding: 20px;
	}
}