/* COPYRIGHT 2018 DAVID BLANCHARD */
/* Styles for /conditions, /confidentialite, /privacy, and /terms  */

/*Rubik regular 400 Latin*/
@import url('https://fonts.googleapis.com/css?family=Rubik');

html, body {
	margin: 0;
	padding: 0;
	background: #F5F4F2;

	font-family: Rubik, sans-serif;
	color: black;
}

header,
main,
footer {
	margin: 0 auto;
	padding: 0 20px;
	max-width: 1600px;
}

body *:focus-visible {
	outline: 2px solid #2696FF;
}

/*HEADER******************************************************************************************/
header {
	padding-top: 20px;
}

.logo {
	height: 40px;
	width: auto;
}

header span {
	padding-left: 10px;
	vertical-align: 4px;
	font-size: 20px;
	font-weight: bold;
}

/*MAIN********************************************************************************************/
@media screen and (min-width: 900px) {
	main .content {
		columns: 2;
		column-gap: 40px;
	}

	main .content section {
		break-inside: avoid;
	}
}

.content p {
	text-align: justify;
}

main.landing section:not(:first-child) {
	margin-top: 40px;
}

h1 {
	border-bottom: 1px solid gray;
}

h2,
h3,
h4 {
	margin-bottom: 4px;
}

h2 + p,
h3 + p,
h4 + p,
summary + p {
	margin-top: 4px;
}

summary {
	cursor: pointer;
}

summary > h3,
summary > h4 {
	display: inline-block;
	margin-top: 4px;
}

button {
	display: block;
	margin: 8px 0 ;
	padding: 4px;
	border: 2px solid black;
	background-color: lightgray;

	font-size: inherit;
	font-family: inherit;
	color: inherit;

	cursor: pointer;
}

button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/*FOOTER******************************************************************************************/
footer {
	padding-bottom: 20px;
}

footer hr {
	border: none;
	border-top: 1px solid gray;
}

footer ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;

	padding: 0;
	width: 100%;
	list-style: none;
}

footer li {
	padding: 10px;
	min-width: 200px;
	font-size: large;
	text-align: center;
}

/*TABLE*******************************************************************************************/
table {
	max-width: 100%;
	font-size: small;
	border-collapse: collapse;
}

table th {
	text-align: left;
}

table th,
table td {
	word-break: break-word;
	border: 1px solid rgba(0, 0, 0, 0.4);
	padding: 2px;
}