@font-face {
	font-family: "Poppins";
	src: url("Poppins-Regular.ttf") format("truetype");
	font-display: swap;
	font-style: normal;
	font-weight: 400;
}

html, body {
	height: 100%;
	padding: 0;
	margin: 0;
}

body {
	background-color: #FFFFFF;
	font-size: 1.2em;
	line-height: 1.5;
	color: #000000;
	font-family: Poppins, sans-serif;
	display: flex;
}

h1, h2, h3, h4, h5  {
	font-weight: bold;
}

h1 {
	text-align: center;
}

a {
	color: #416524;
	transition-duration: 0.3s;
}

a:hover {
	text-decoration: none;
}

a:has(>img):hover {
	text-decoration: none;
}

img {
	max-width: 100%;
	width: auto;
	height: auto;
}

main {
	background-color: #EDF2EA;
	color: #000000;
	text-align: justify;
	margin: 0 auto;
	padding: 0 4% 4%;
	box-sizing: border-box;
	flex: 1 1 50%;
	overflow: auto;
}

aside {
	background-color: #334C24;
	background-image: url("https://traitlocal.ch/media/traction-animale_Java-PF.jpg");
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position-x: right;
	background-position-y: bottom;
	flex: 1 1 50%;
	min-height: 100vh;
}

address {
	background-color: #334C24;
	color: #FFFFFF;
	padding: 2%;
	box-sizing: border-box;
}

address a {
	color: #FFFFFF;
}

.center {
	text-align: center;
}

.flex {
	display: flex;
	gap: 2%;
	align-items: top;
}

.flex .col-1-2 {
	flex: 1 1 50%;
}

@media screen and (max-width:  840px) {
	body {
		display: block;
	}
	main {
		text-align: left;
	}
	aside {
		background-position-x: center;
	}
}
