/* =================================================================*/
/* TOUTE LA PAGE */
html {
	display: flex;
	flex-direction: row;
	justify-content: center;
}

/* =================================================================*/
/* BODY */
body {
	background-image: url("images/desk.png");
    font-family: "Courier New", Courier, monospace;
}

/* =================================================================*/
/* MAIN */
main {
	width: 656px;
	height: 544px;
	background-image: url("images/paper.png");
	background-repeat: no-repeat;
	display: flex;
	flex-direction: row;
	justify-content: center;
}

article {
	padding-top: 60px;
	padding-left: 30px;
	padding-bottom: 70px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.right {
	text-align: right;
	padding-right: 70px;
	font-family: "Space Mono", monospace;
}

/* =================================================================*/
/* FOOTER */
footer {
	width: 656px;
	height: 224px;
	background-image: url("images/paper_small.png");
	background-repeat: no-repeat;
	padding-top: 55px;
}

footer p {
    text-align: center;
}

/* =================================================================*/
/* =================================================================*/
/* =================================================================*/
/* Pour les petits écrans: */
@media only screen and (max-width: 700px) {
	/* =================================================================*/
	/* TOUTE LA PAGE */
	html{
		/* display: inline; */
	}
	
	/* =================================================================*/
	/* BODY */
	body {
		width: 100%;
	}
	
	/* =================================================================*/
	/* MAIN */
	main {
		width: 100%;
		height: 70%;
		background-image: none;
		/* display: inline; */
	}
	
	article {
		background-color: #ecddc0;
		padding-top: 0px;
		padding-left: 10px;
		padding-right: 10px;
	}
	
	.right {
		padding-right: 10px;
	}
	
	/* =================================================================*/
	/* FOOTER */
	footer {
		width: 100%;
		height:30%;
		background-image: none;
		background-color: #ecddc0;
		margin-top: 10px;
		padding-top: 10px;
	}
}