@charset "UTF-8";
body
{
	color: black;
	background-color: white;
	font-family: courier, "Courier New", monospace;
	margin: 0px;
	padding:0px;
}
a {
	color: black;
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
	color: fuchsia;
}
h1 {
	margin-bottom:0;
}

	/* too make the footer go at the bottom of the page even when content is short */
	#whole-page {	
		display: flex;
		min-height: 100vh;
		flex-direction: column;
		justify-content: flex-start;
	}
	#footer {
		margin-top: auto;
	}

#header, #footer {
	color: white;
	background-color: black;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}
#header a, #footer a {
	color: white;
	text-decoration: none;
}
#header a:hover, #footer a:hover {
	color: fuchsia;
	font-weight:bold;
}

#main-content
, #header-content, #footer-content
{
	max-width: 45rem;
	margin-left:auto;
	margin-right:auto;
	padding-left:1rem;
	padding-right:1rem;
}

#menu {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

#menu, #content-content, #header h1
{
	margin-top: 1rem;
}

/* desktop version: site title and menu on 1 lines  */
#header h1, #menu
{
	display: inline;
	padding-right: 1rem;
}
/* mobile version: site title and menu on 2 lines  */
@media only screen and (max-width:25rem)
{
	#header h1
	{
  display: block;
	}
}

#menu li
{
	display: inline;
	padding-right: 1rem;
}

#header h1
{
	font-weight: bold;
	font-size: 1rem;
	margin:0;
}

#languages
{
	float: right;
	margin-right: -1rem;
}

#footer-content {
	text-align: center;
}

.float-right
{
	float: right;
}
.magazine-cover
{
	transform: rotate(4deg);
	border-right: 2px solid #171216;
	border-bottom: 2px solid #171216;
	margin-left:1rem;
	margin-right: 0.5rem;
}
.mobile {
	display:none;
}
/* mobile version  */
@media only screen and (max-width:30rem)
{
	.mobile {
		display:block;
	}
	.desktop {
	display:none;
	}
	.magazine-cover
	{
		margin-top: -0.5rem;
		margin-bottom: 1rem;
	}
}


.grid-container
{
	list-style-type:none;
	padding:0;
	margin-right:-1em;
	display: flex;
	flex-wrap: wrap;
}

.grid-container li
{
	box-sizing:border-box;
	padding: 0 1rem 1rem 0;
	font-size: 0.9em;
	width: 13.5rem;
	max-width:25%;
/*   max-width:10%; */
}

/* @media screen and (max-width:118rem) {
.grid-container li {
  max-width:11.11%;
 }
}
@media screen and (max-width:105rem) {
.grid-container li {
  max-width:12.5%;
 }
}
@media screen and (max-width:92rem) {
.grid-container li {
  max-width:14.2%;
 }
}
@media screen and (max-width:79rem) {
.grid-container li {
  max-width:16.6%;
 }
}
@media screen and (max-width:66rem) {
.grid-container li {
  max-width:20%;
 }
}
@media screen and (max-width:53rem) {
.grid-container li {
  max-width:25%;
 }
} */
@media screen and (max-width:45rem) {
.grid-container li {
	font-size: 2vw;
 }
}
@media screen and (max-width:40rem) {
.grid-container li {
  max-width:33.33%;
	font-size: 2.25vw;
 }
}
@media screen and (max-width:27rem) {
 .grid-container li {
  max-width:50%;
	font-size: 3.33vw;
 }
}
@media screen and (max-width:16rem) {
 .grid-container li {
  max-width:100%;
	font-size: 5.62vw;
 }
}
.grid-container li p
{
	margin-top: 0;
	margin-bottom: 0.3rem;
}
.grid-container a
{
	text-decoration: none;
}
.specs, .role, .video-links
{
	font-size: 0.7em;
}

.grid-container li span
{
	padding: 0.2rem;
	padding-bottom: 0;
	border: 0.1rem solid gray;
}

.grid-container li span span
{
	font-size: 1.5em;
	padding: 0;
	border: 0;
}

.poster
{
	width: 100%;
	aspect-ratio: 2 / 3;
	object-fit: cover;
	border: 0.1rem solid gray;
}

.comic-thumbnail, .comic-page
{
	width: 106%;
	margin-left:-3%;
	margin-right:-3%;
}
.comic-thumbnail
{
	aspect-ratio: 2.2 / 3;
	margin-bottom:0.5rem;
}

.comic-thumbnail img
{
	width:100%;
	height:100%;
	margin-bottom:-1rem;
}

a:hover .comic-thumbnail
{
	background-color:fuchsia;
}
a:hover .comic-thumbnail img
{
	mix-blend-mode: lighten;
}

.comic-page
{
	margin-bottom: 2rem;
}

.comic-specs{
	font-size: 0.85em;
}

.email-input
{
	width:100%;
}

.info-rgpd
{
	font-size: 0.85em;
}

.newsletter-submission-buttom {
  float:right;
	margin-bottom: 2em;
}

/* VIDEO PLAYER */
#video_player_container
{
	display:none;
	position: fixed;
	width: 100%;
	height: 100%; 
	left: 0px;
	top: 0px;
}
#video_player_background
{
	position: absolute;
	width: 100%;
	height: 100%; 
	background: black;
	opacity:0.6;
	z-index:0;
}
#close_player
{
	position: absolute;
	display: block;
	text-align:center;
	width: 4vh;
	right: 1rem;
	top: 1rem;
	font-size: 4vh;
	font-family:arial, helvetica, sans serif;
	color: white;
	background-color: black;
	text-decoration: none;
	z-index:2;
}
#close_player:hover
{
	color: black;
	background-color: white;
}
#video_player_container iframe
{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100vw;
	height: 56.25vw;
	max-width: 133.33vmin;
	max-height: 75vmin;
	border: none;
	z-index:1;
}
