/*
Theme Name: Blank
Author: MonsieurAdrien
Author URI: http://monsieuradrien.fr/
Text Domain: blank
*/



/* 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.6em;
}
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;
}

* { box-sizing: border-box; }

/* */

body {
    margin:80px 0;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
}

.container {
    max-width: 960px;
    margin:auto;
    display: grid;
    grid-template-columns: 160px 1fr;
    gap:40px;
}

.content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.g-item {
    overflow: hidden;
    cursor: pointer;
}

.g-item img {
    max-width: 100%;
}

h1 {
    font-size:2em;
    font-weight: 600;
}

nav li {
    padding:10px;
    cursor: pointer;
}

nav li.active { font-weight: 600; }

figcaption {
    font-size: 0.8em;
}


#zoom { display: none;}
#zoom.active { display: block; z-index: 100; position: fixed; top:0; bottom:0; left:0; right:0; padding:20px; background-color: rgba(0,0,0,0.5); cursor: pointer; }
#zoom img { height: 100%; width: 100%; object-fit: contain;}


.pan { display: none;}
.pan.active { display: block;}

a {
    text-decoration: none;
    color:#000;
}


@media screen and (max-width: 600px) {
    body { padding:4vw; margin-top:0; }
    .container, .content { display: block;}
    .g-item { margin-bottom: 4vw; }
    #nav { margin: 10px 0;}
    #nav li { display: inline-block; padding:7px;}
    #apropos,#contact { margin-top:60px; }
  }