* {
	margin:0;
	padding:0;
	box-sizing:border-box;
	font-family:"Sriracha",cursive;
}

.header {
	background-image:url(../images/LondonLandmarks.gif);
	background-color:#09C;
	background-repeat: repeat-x;
	position: relative;
	padding-top: 14em;
}
.header h1, 
.header h2 {
	font-family:'wire one', serif;
	color: #FFF;
	text-align: center;
}

.bloc-white {
  background:#fff;
  width:100%;
  padding:7% 20% 7% 20%;
  color: #09C;
}
.bloc-blue {
  background:#09C;
  width:100%;
  padding:7% 20% 10% 20%;
  color:#fff;
}
.skew-whiteblue{
  width:100%;
  height:100px;
  position: relative;
  left:0px;
  background: linear-gradient(to left bottom, #fff 49%, #09C 50%);
}
.skew-bluewhite{
  width:100%;
  height:100px;
  position: relative;
  left:0px;
  background: linear-gradient(to right bottom, #09C 49%, #fff 50%), linear-gradient(-50deg, #ffffff 16px, #000 0);
}

h1,h2,h3,h4 {font-family:'wire one', serif;}
h1 {
	
	text-align:center;
	font-size:80px;
	text-shadow: 3px 3px 6px #999;
	font-weight: bold;
}
h2 {
	font-size: 56px;
	letter-spacing: 2px;
	text-shadow: 2px 2px 4px #999;
	padding-bottom:25px;
}
h3 {
	font-size: 48px;
	padding-bottom:25px;
}
h4 {
	font-size: 36px;
	padding-bottom:25px;
}
p {
	font-size: 24px;
	padding-bottom:25px;
}
.small {
	font-size:16px;
}

a:link {
	color:#333;
	font-weight: bold;
	text-decoration: none;
}
a:visited {
	color:#333;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	color: #F00;
	text-shadow: 3px 3px 5px #999;
}
a:active {
	color:#333;
	text-decoration: none;
}

ul {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	margin: auto;
	list-style-type: none;
	color: #666;
	font-size:20px;
	line-height:32px;
	background: #CCC;
	padding: 0.5em;
	margin-bottom:2em;
	border-radius: 10px;
	box-shadow: 7px 7px 9px #666;
}
ul li {
	background: #EEE;
	margin: 0.5em;
	padding:0.25em 0.5em;
}

br	{
	margin: 0;
	padding:0;
}

hr {
	border: 0;
	clear:both;
	display: block;
	width: 90%;
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0)); 
	height: 2px;
	margin: 80px 0;
}

figure	{
	margin: auto;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-evenly;
	align-content: stretch;
	background:#CCC;
	padding:2em;
	margin-bottom:2em;
}
figcaption {
	font-size: 18px;
	padding-bottom:2em;
}
.full-width {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

.box {
	max-width:100%;
	border-radius: 10px;
	box-shadow: 7px 7px 9px #666;
	margin-bottom:2em;
}

.book {
	width:100%;
	border-radius: 10px;
	padding:1em;
	box-shadow: 7px 7px 9px #666;
	margin-bottom:2em;
}

.row {
  display: flex;
  flex-wrap: wrap;
}
.column {
  padding: 10px;
  flex: 50%;
}
@media (max-width: 800px) {
  .column {
    flex: 100%;
  }
}


/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


/*menu*/

.overlay {
	height: 0%;
	width: 100%;
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0, 0.9);
	overflow-y: hidden;
	transition: 0.5s;
}
.overlay-content {
	position: relative;
	top: 25%;
	width: 100%;
	text-align: center;
	margin-top: 30px;
}
.overlay a {
	padding: 8px;
	text-decoration: none;
	font-size: 36px;
	color: #818181;
	display: block;
	transition: 0.3s;
}
.overlay a:hover, .overlay a:focus {
	color: #f1f1f1;
}
.overlay .closebtn {
	position: absolute;
	top: 20px;
	right: 45px;
	font-size: 60px;
}
@media screen and (max-height: 450px) {
	.overlay {overflow-y: auto;}
	.overlay a {font-size: 20px}
	.overlay .closebtn {
	font-size: 40px;
	top: 15px;
	right: 35px;
	}
}


/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */


/* scrollbar */

::-webkit-scrollbar{width:20px;height:20px;}
::-webkit-scrollbar-thumb{background: #CCC;}
::-webkit-scrollbar-thumb:hover{background:#ff6f02}
::-webkit-scrollbar-track{background:#09C;border-radius:0px;}


/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

