/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* +++++++++++++ XAVI +++++++++++++ */

h1 {
	font-size: 30px;
	font-family: Times;
	text-transform: uppercase;
	margin-bottom: 12px;
}

h2 {
	font-size: 26px;
	font-family: Verdana;
	margin-bottom: 10px;
}

h3 {
	font-size: 22px;
	font-family: Verdana;
	margin-bottom: 8px;
}

h4 {
	font-size: 18px;
	font-family: Verdana;
}

h5 {
	font-size: 16px;
	font-family: Verdana;
}

h6 {
	font-size: 14px;
	font-family: Verdana;
}

p {
	margin-bottom: 10px;
}

html,
body {
	background: #ffe0a7;
}

main,
section,
footer {
	width: 70%;
	margin: 25px 15%;
	max-width: 1000px;
}

a,
a:visited,
a:link {
	color: #ff3921;
	text-decoration: none;
	transition: all 0.75s;
}

a:hover {
	color: #651500;
	text-decoration: underline;
}

body main,
body section,
body footer {
	text-align: center;
	background: rgba(255, 255, 255, 0.75);
	padding: 20px;
}

body.page-home section ul {
	display: flex;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
	justify-content: center;
}

body.page-home section ul li {
	border: 1px solid #fafafa;
	padding: 10px;
}

ul,
ol {
	list-style: none;
}

#cookie_banner_shadow {
	content: " ";
	display: block;
	background: rgba(0, 0, 0, 0.5);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

#cookie_banner {
	background-color: aqua;
	color: #651500;
	padding: 20px;
	text-align: center;
	position: fixed;
	width: 100%;
	margin: 0 auto;
	top: 50%;
}

#cookie_banner p {
	display: inline;
}

#cookie_banner input[type=submit],
#cookie_banner button {
	padding: 10px 20px;
	display: inline-block;
}