/* Police de type machine à écrire */
@import url('https://fonts.googleapis.com/css2?family=Special+Elite&display=swap');

body {
	background-color: #fffbbc;
	color: #000000;
	font-family: 'Special Elite', monospace;
	line-height: 1.6;
	margin: 0;
	padding: 20px;
	max-width: 800px;
	margin: 0 auto;
}

header {
	border-bottom: 2px solid #000000;
	padding-bottom: 10px;
	margin-bottom: 20px;
	text-align: center;
}

h1 {
	font-size: 2.5em;
	margin: 0;
}

article {
	background-color: #fffbbc;
	border: none;
	padding: 5px;
}

h2 {
	color: #000000;
	border-bottom: 1px dashed #000000;
	padding-bottom: 5px;
}
h2 span {
	color: #6a6a6a;
	font-size: 0.6em;
}

footer {
	text-align: center;
	margin-top: 30px;
	font-size: 0.9em;
	border-top: 1px solid #000000;
	padding-top: 10px;
}

a {
	color: #525252;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

/* Effet de clignotement pour le curseur */
.cursor {
	display: inline-block;
	width: 20px;
	height: 35px;
	background-color: #000000;
	animation: blink 1s infinite;
	vertical-align: middle;
}

@keyframes blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0; }
}

blockquote p{
	background-color: #e1e0d2;
    border-left: 4px solid #7b7b7b;
    padding: 4px;
    margin: 4px 0;
    font-style: normal;
    color: black;
    position: relative;
    font-size: 0.9em;
}

h2 a {
	color : black;
}