* {
	box-sizing: border-box;
}
html {
	position:relative;
	 height:100%;
	 width:100%;
	scroll-behavior: smooth;
}
body {
	background:#181F1B;
	 height:100%;
	 width:100%;
	 margin:0;
	 padding:0;
	 scroll-behavior: smooth;
}
h1 {
	color:#822;
	font: 500 7.5vmax/10vmax Georgia,
		Utopia,
		palatino,
		‘palatino Linotype’,
		serif;
	text-shadow:#010 1px 1px 1px, #cdc -1px -1px 1px;
	text-align:center;
}
h2 {
	font: 700 28px/36px Georgia,
		Utopia,
		palatino,
		‘palatino Linotype’,
		serif;
	text-shadow: #cfc 0px -1px 1px;
	text-align:center;
	hyphens: none;
}
@media screen and (max-width:500px) {
	h2 {
		hyphens: auto;
	}
}
a {
    color:#181868;
	font-weight:700;
}
h2 a {
	color:black;
	text-decoration:none;
}
h3 {
	font: 700 18px/24px "Droid Serif", Helvetica, sans-serif;
}
p, li {
	font: 400 16px/24px Tahoma,
		arial,
		Helvetica,
		sans-serif;
}
p {
	margin:0;
	padding:5px 10px;
}
p.copyright {
	font-size:10px;
	text-align:center;
	width:100%;
}
.panel {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;	
	min-height:100vh;
	position:relative;
	border-bottom:1px solid #020;
	box-shadow:         0px 10px 10px 0px #010;
}
.info {
	position:relative;
	background-color: rgba(143,
				188,
				143, 0.9);
	border-radius:10px;
	border:2px solid #030;
	box-shadow:         0px 3px 5px 0px #010, inset 0px 1px 0px 1px #cdc;
	display:block;
	width:90vw;
	max-width: 960px;
	margin:20px 0;
}
.col {
	float:left;
	width:28%;
	margin:0 1.5% 100px 1.5%;
}
.first {
	margin-left:3%
}
.show-lang {
	display:none;	
}
.lang-switcher {
	display:none;
}
@media screen and (max-width: 959px) {
.col {
	float:none;
	width:auto;
	margin:0;
}
.first {
	margin-left:0;
}
.col h2 a {
	display:block;
	width:100%;
	padding:5px 40px;
}
.col p,.col h3 {
	overflow:hidden;
}
.show-lang[value="fr-ca"]:not(:checked)  ~ .col[lang="fr-ca"],
.show-lang[value="moh"]:not(:checked)~.col[lang="moh"],
.show-lang[value="en-ca"]:not(:checked)~.col[lang="en-ca"] {
	display:none;
}
.show-lang[value="fr-ca"]:checked ~ .col[lang="fr-ca"],
.show-lang[value="moh"]:checked ~ .col[lang="moh"],
.show-lang[value="en-ca"]:checked ~ .col[lang="en-ca"] {
	display: block;
}
.lang-switcher {
	display: flex;
	flex-direction: row;
	background-color: rgba(0, 0, 0, 0.8);
	position: sticky;
	top: 0px;
	min-height: 45px;
	text-align: center;

}

.lang-switcher label {
	flex: 1 1 33%;
	padding: 0 20px;
	color: rgb(143,
			188,
			143);
	text-decoration: none;
	font: 400 16px/45px Tahoma,
		arial,
		Helvetica,
		sans-serif;
}
.show-lang[value="fr-ca"]:checked~ .lang-switcher label[for$="fr"],
.show-lang[value="moh"]:checked~ .lang-switcher label[for$="moh"],
.show-lang[value="en-ca"]:checked~ .lang-switcher label[for$="en"] {
	color: rgb(32, 178, 170);
	font-weight: 700;
}
}
@media screen and (max-width: 374px) {
	.lang-switcher {
		flex-wrap: wrap;
	}
	.lang-switcher label {
		line-height: 30px;		
	}
	.lang-switcher label[for$="moh"] {
		order: 3;
	}
	
}
#title {
	background:top center url(images/title.jpg) fixed no-repeat;
	background-size:cover;
	z-index:-1;
}
#title .info {
	background:none;
	border:hidden;
	box-shadow:none;
}
#intro {
	background:top center url(images/page2.jpg) fixed no-repeat;
	background-size:cover;
	z-index:-2;
}
#intro .info {
	background-image:url(images/intro-top.jpg);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: contain;
	padding-top:calc(min(90vw, 960px) * 0.4);
}
#poems {
	background:top center url(images/poems.jpg) fixed no-repeat;
	background-size:cover;
	z-index:-3;
	flex-direction: row-reverse;
}
#poems .slide {
	height:100vh;
	width:0;
	opacity: 0;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: width .25s, opacity .25s;
}
#poems .slide:target,
#poems .slide:last-child {
	width:100vw;
	opacity: 1;
}
#poems .slide:target ~ .slide:last-child {
	width:0;
	opacity: 0;
}
#poems .info {
 overflow:hidden;
 max-height:90vh;
 display: flex;
 flex-direction:column
}
#poems .info:not(.list) {
	max-width: 576px;
}
#poems .col {
	float:none;
	width: auto;
	margin: 0;
	overflow:auto;
	flex:1 1 auto;
}
#poems .center {
	text-align: center;
}
#poems .info nav,
#poems .info nav ul  {
	height:45px;
	width: auto;
	margin:0;
	padding:0;
	border-radius: 0;
	position:relative;
	left:0;
	background-color: rgba(0, 0, 0, .75);
}
#poems .info nav ul {
	display: flex;
	flex-direction:row;
}
#poems .info nav li {
	flex:1 1 33%;
	min-width: 0;
	text-align: center;
	padding:0;
}
#poems .info nav a {
	font-weight: normal;
}

#howto {
	background:top center url(images/howto.jpg) fixed no-repeat;
	background-size:cover;
	z-index:-4;
}
#howto .info {
	background-image:url(images/howto-top.jpg), url(images/howto-btm.png);
	background-attachment: scroll, scroll;
	background-position: top center, bottom center;
	background-repeat: no-repeat, no-repeat;
	padding-top:380px;
	padding-bottom:260px;
}
#manifest {
	background:top center url(images/manifest.jpg) fixed no-repeat;
	background-size:cover;
	z-index:-5;
}
#manifest p {
	text-align:center;	
}
#manifest img {
	margin:0 5px;
	max-width:450px;
	width:75vw;
}
#links {
	background:top center url(images/links.jpg) fixed no-repeat;
	background-size:cover;
	z-index:-6;
}
#thanks {
	background:top center url(images/intro.jpg) fixed no-repeat;
	background-size:cover;
	padding-bottom: min(90px,11vmax);
	z-index:-7;
}
