/* 
geocaching.css
par Alain BARBIER
écrit en janvier 2017
*/

/*corps du document*/
body {
  background : url(../fond.jpg)fixed;
} 

#corps
{
	width:940px;
	margin-left: auto;
	margin-right: auto;
}

header
{
	background : url(../fond.png) fixed repeat;
	border: 1px grey solid; /*bordure grise de 2 pixels*/
	border-radius: 15px; /*angles arrondis de 15 pixels*/
	margin-bottom:5px;
}

header h1
{
	font-family: arial, verdana, sans-serif;
	text-shadow:8px 8px 8px grey;
	font-size: 3em;
	font-weight: normal; 
	font-style:normal;
	text-align: center; 
}

#descriptif
{
	width:850px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom:10px;
	font-family: arial, verdana, sans-serif;
	font-size: 0.7em;
}

section
{
	width:940px;
	height: 10500px;
	display: flex;
	flex-direction:column;
	flex-wrap:wrap;
	justify-content:flex-start;
	align-items:center;
}

#num01, #num02, #num03, #num04, #num05, #num06, #num07, #num08, #num09, 
#num10, #note
{
	width:295px;
	background : url(../fond.png) fixed repeat;
	border: 1px grey solid; /*bordure grise de 2 pixels*/
	border-radius: 10px; /*angles arrondis de 15 pixels*/
	margin-left:5px;
	margin-bottom:5px;
	padding-left:10px;
	padding-top:10px;
	padding-bottom:10px;
}

h2
{
	font-family: arial, verdana, sans-serif;
	font-size: 0.8em;
}

a{
text-decoration:none;
color:darkblue;
font-weight: bold;
}
a:link{
color: darkblue;
}
a:visited {
color: darkblue;
}
a:hover{
color:blue;
font-weight: bold;
}

.photo
{
	width:90%;
	margin-left:10px;
	height:auto;
	border:0px;
}

.basdepage
{
	text-align: center;
	padding-top: 20px;
}

/*-------------------------------------------------*/
/*-------- pour les écrans < 1024 pixels ----------*/
/*-------------------------------------------------*/

@media all and (max-width:1024px)
{
#corps
{
	width:310px;
}
header
{
	width:310px;
	border-radius: 10px; /*angles arrondis de 15 pixels*/
	margin-bottom:5px;
}
header h1
{
	text-shadow:2px 2px 2px grey;
	font-size: 1em;
}
#descriptif
{
	width:280px;
	margin-bottom:5px;
	font-family: arial, verdana, sans-serif;
	font-size: 0.6em;
}
section
{
	width:310px;
	height:auto;
}
#num01, #num02, #num03, #num04, #num05, #num06, #num07, #num08, #num09, 
#num10, #note
{
	width:300px;
}
}

/*-------------------------------------------------*/
/*-------- pour les écrans >1600 pixels ----------*/
/*-------------------------------------------------*/

@media all and (min-width:1600px)
{
#corps
{
	width:1580px;
}
header
{
	width:1580px;
}
header h1
{
	font-size: 4em;
}
#descriptif
{
	width:1500px;
	font-size: 1.2em;
}
section
{
	width:1580px;
	height:8000px;
}
#num01, #num02, #num03, #num04, #num05, #num06, #num07, #num08, #num09, 
#num10, #note
{
	width:300px;
}
}