:root {
	font-size: 16px;

	--font-title: "Indie Flower", cursive;
	--font-text: "Open Sans", sans-serif;
	--font-quote: "Palanquin Light", sans-serif;

	font-family: var(--font-text);

	--text-primary: deepskyblue; /* rgb(10, 150, 255); */ /* deeppink / peru */
	--text-secondary: deeppink; /* fuschia / rgb(255, 0, 255) */
	--text-light: rgb(254, 245, 231);
	/* --text-light-50: rgba(254, 245, 231, 0.5) */
	--text-medium: #a68a70;
	--text-dark: firebrick;

	--link-on: darkorange;
	/* --link-off: deeppink; */
	--link-medium: var(--text-primary); /* rgb(166, 138, 112) */

	--bg-light: rgb(254, 245, 231);
	--bg-light-90: rgb(254, 245, 231, 0.9);
	--bg-light-50: rgba(254, 245, 231, 0.5);
	--bg-medium: #462d22;
	--bg-dark: #191715;
	--bg-dark-90: rgba(25, 23, 21, 0.9);
	--bg-dark-50: rgba(25, 23, 21, 0.5);
	--bg-dark-30: rgba(25, 23, 21, 0.3);
	--bg-dark-10: rgba(25, 23, 21, 0.1);

	--bg-linear-light: linear-gradient(
		rgba(255, 255, 255, 0.6),
		rgba(255, 255, 255, 0.8),
		rgba(255, 255, 255, 0.6)
	);

	--scrolbar-track: dimgrey;
	--scrolbar-thumb: indianred;

	--fx-transition-speed: 300ms;
	--panel-transition-speed: 200ms;
}

@font-face {
	font-family: "Palanquin Light";
	src: url("Palanquin-Light.ttf") format("truetype");
}

/* html {
    scrollbar-color: indianred dimgrey;
    height: 100vh;
    width: 0.5rem;
} */

body {
	background: url(img/bg01.jpg) no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	/* display: grid; */
	height: 100%;
	/* width: 100vw; */

	color: var(--text-light);
	padding: 0;
	margin: 0;
}

.hidden {
	display: none;
}

/* body::-webkit-scrollbar {
    width: 0.5rem;
}

body::-webkit-scrollbar-track {
    background: var(--scrollbar-track);
}

body::-webkit-scrollbar-thumb {
    background: var(--scrollbar-thumb);
} */



.link-text {
	display: none;
	/* margin-left: 1rem; */
	font-size: 1.6rem;
}



.logo {
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
	/* color: var(--text-medium); */
	/* background: var(--bg-dark); */
	/* font-size: 1.5rem; */
	letter-spacing: 0.2ch;
	width: 100%;
}
.logo svg {
	transform: rotate(0deg);
	transition: var(--fx-transition-speed);
}
.logo-text {
	display: inline;
	position: absolute;
	left: -999px;
	transition: var(--fx-transition-speed);
	margin-left: 1rem;
	font-size: 0.8rem;
}


.main {
	padding: 3em;
	/* background-color: rgba(0, 0, 0, 0.4); */
	background: linear-gradient(var(--bg-dark-50), var(--bg-dark-90));
}

article {
	margin: 2rem 0;
}

h1,
h2,
h3,
h4,
h5 {
	/* font-family: "Permanent Marker", Verdana, sans-serif; */
	font-family: var(--font-title);
	/* filter: brightness(140%); */
}

h5 {
	font-size: 1.6rem;;
}

/* h1 span, h2 span,  */
h3 span,
h4 span,
h5 span {
	/* display: inline-block; */

	/* padding: 0 0.25em; */
	/* background: var(--bg-dark-50); */

	/* filter: opacity(0.9); */
}

h1 {
	text-align: center;
	color: var(--text-secondary);
	font-size: 5em;
	margin: 0;
	line-height: 1em;
	text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.7);
}
h1 small {
	/* font-size: 0.5em; */
}

header h2 {
	line-height: 1em;
	text-align: center;
}

main h2 {
	/* text-align: center; */
	font-size: 2.8em;
	margin: 4rem 0 2rem;
	color: var(--text-light);
	padding: 0.5rem;
	background: var(--text-primary);
	/* border-bottom: 1px solid var(--text-primary); */
	text-align: center;
	border-radius: 0.5rem;
}

h2 span {
	/* border-bottom: 1px solid var(--text-primary); */
}

h3 {
	color: var(--text-primary);
	/* filter: hue-rotate(30deg) brightness(140%); */
	margin: 1.5rem 0 0.5rem;
	font-size: 2.2rem;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
	line-height: 1.2em;
}

h3 span {
	/* border-bottom: 1px solid var(--text-primary); */
}

h4 {
	font-weight: normal;
	font-size: 1.3rem;
	margin: 1rem 0 0.5rem;
	letter-spacing: 0.1ch;
}

h1 svg,
h2 svg,
h3 svg,
h4 svg,
h5 svg {
	/* color: var(--text-medium); */
	/* filter: opacity(0.8); */
}

h2,
h3 {
	letter-spacing: 0.2ch;
}

p {
	/* color: white; */
	font-family: var(--font-text);
	/* font-size: 1em; */
	margin: 0.5em 0;
	/* text-align: center; */
}
address {
	font-style: normal;
	font-size: 1.2rem;
	text-align: center;
}
a.ext-link {
	/* border-radius: 0rem; */
	/* border: 1px solid deeppink; */
	/* color: var(--link-medium); */
	/* background-color: var(--bg-dark); */
	/* padding: 1rem; */
	display: inline-block;
	text-decoration: none;
	color: var(--link-on);
	background: var(--bg-light-90);
	padding: 0 0.2rem;
	/* margin-left: 0.5ch; */
	font-size: 1em;
}
a.ext-link span {
	filter: hue-rotate(0);
	/* font-size: 1em; */
}
a.ext-link::after {
	content: "\f360";
	font-family: "Font Awesome 5 Free";
	display: inline-block;
	font-weight: 600;
	margin-left: 0.2rem;
	font-size: 0.8em;
	filter: grayscale(1) opacity(0.5);
	transition: all var(--fx-transition-speed) ease;
	font-style: normal;
}
a.ext-link:hover {
	border-color: var(--link-bg-light);
}
a.ext-link:hover span {
	/* filter: grayscale(1); */
	filter: hue-rotate(-90deg);
	transition: all var(--fx-transition-speed) ease;
}
a.ext-link:hover:after {
	filter: grayscale(0) opacity(1);
	transition: all var(--fx-transition-speed) ease;
	margin-left: 1rem;
}

ul {
	/* list-style: none; */
	/* padding-left: 0; */
	/* margin: .5rem 0; */
}

ul svg {
	margin-right: 0.5rem;
}

blockquote {
	padding: 1em 0;
	margin-left: 0;
	text-align: center;
	min-height: 3em;
	font-size: 1.6em;
}

blockquote span {
	font-size: 1.6em;
	padding: 0 0.2em;
}

blockquote:before {
    content: '\00a0"';
    transform: rotate(180deg);
    display: inline-block;
    padding-top: 1rem;
}

blockquote:after {
	content: '\00a0"';
	rotate: rotate(180deg);
}

blockquote:before, blockquote:after {
    font-size: 3rem;
    line-height: 1rem;
    font-family: var(--font-quote);
}

.words-carrousel {
	font-size: 1.5em;
	/* color: var(--text-primary); */
	/* background: var(--bg-light-90); */
	/* display: inline-block; */
}

.video {
	height: 0;
	padding-bottom: 56.25%;
	position: relative;
	overflow: hidden;
}

.video iframe {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
}

.covidList {
	list-style: none;
	padding-left: 0;
}

.covidList li {
	padding: 0.5em 0;
}

section > div {
	border-left: 1px solid white;
	padding-left: 2rem;
}

/* small screens */
@media only screen and (max-width: 1079px) {
	.main {
		margin: 0;
		padding: 3em 3em 6em;
	}

	h1 {
		font-size: 4em;
	}

	/* .logo {
        display: none;
    } */

	/* .container {
        display: grid;
        grid-template-columns: 1fr;
    } */

	a.ext-link {
		font-size: 2em;
	}
}

/* L screen */
@media only screen and (min-width: 1080px) {

	.logo {
		margin-bottom: 1rem;
	}

	.main {
		/* margin-left: 16rem; */
	}
}

/* XL screen */
@media only screen and (min-width: 1441px) {
	.container main {
		display: grid;
		grid-template-columns: 1fr; /* 1fr 1fr */
		gap: 1rem;
		padding: 0 15%;
	}
}

/* XXL large screen */
@media only screen and (min-width: 1921px) {
	.container main {
		display: grid;
		grid-template-columns: 1fr; /* 1fr 1fr 1fr */
		gap: 2rem;
		padding: 0 15%;
	}
}
