body {
	background-image: url("../img/poly.jpg"); /* The image used */
	background-color: #cccccc; /* Used if the image is unavailable */
	height: 500px; /* You must set a specified height */
	background-position: center; /* Center the image */
	background-repeat: no-repeat; /* Do not repeat the image */
	background-size: cover; /* Resize the background image to cover the entire container */
	overflow: hidden;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
}

h1 {
	//font-size: 2em;
	//font-size: 2.3vw;
	font-size: 4.5vw;
}

h2 {
	//font-size: 1.2em;
	//font-size: 1.2vw;
	font-size: 3vw;
}

h3 {
	//font-size: 1em;
	//font-size: 1.2vw;
	font-size: 3.3vw;
}

@media (min-width: 1024px) {
	h1 {
		//font-size: 2em;
		font-size: 2.3vw;
		//font-size: 4.5vw;
	}

	h2 {
		//font-size: 1.2em;
		font-size: 1.2vw;
		//font-size: 3vw;
	}

	h3 {
		//font-size: 1em;
		font-size: 1.5vw;
		//font-size: 3vw;
	}
}

a {
	color: mintcream;
	text-decoration: none;
}

a:hover {
	color: blue;
	//text-decoration: none;
}

a:active {
	color: springgreen;
	//text-decoration: none;
}

//a:link, a:visited, a:hover, a:active {
	//background-color: #f44336;
	//color: white;
	//padding: 15px 25px;
	//text-align: center;
	//text-decoration: none;
	//display: inline-block;
//}

/* Split the screen in quarter */
.split {
	height: 42%;
	width: 47%;
	position: fixed;
	z-index: 1;
	//top: 0;
	//overflow-x: hidden;
	overflow: hidden;
	padding-top: 20px;
	color: mintcream;
	border-radius: 20px;
}

/* Control the top left part */
.topleft {
	top: 2%;
	left: 2%;
	background-color: turquoise;
	//border-radius: 10;
}

/* Control the top right part */
.topright {
	top: 2%;
	right: 2%;
	background-color: darkturquoise;
}

/* Control the bottom left part */
.bottomleft {
	left: 2%;
	top: 52%;
	background-color: lightseagreen;
}

/* Control the bottom right part */
.bottomright {
	right: 2%;
	top: 52%;
	background-color: darkcyan;
}

/* If you want the content centered horizontally and vertically */
.centered {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	//font-size: 1.2vw;
}

/* Style the image inside the centered container, if needed */
.centered img {
	width: 80px;
	// width: 100px;
	// border: 0;
	// border-radius: 50%;
}

.disabled {
	color: darkgrey;
	pointer-events: none;
}

.dday {
	color: mintcream;
}

.container {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	align-items:center;
	justify-content: center;
}
a.gallery {
	margin:5px;
	padding:5px;
	background:#fff;
	box-shadow:0 0 10px rgba(0,0,0,0.2);
}
a.gallery:hover {
	transition:all .3s;
	transform:scale(1.1);
}
a.gallery img {
	//height:100px;
	height:80px;
}
a.custom {
	display:inline-block;
	padding:10px;
	color:#fff;
	background:#000;
	border:3px solid #fff;
	box-shadow:0 0 10px rgba(0,0,0,0.2);
	text-decoration:none;
}
a.custom:hover {
	transition:all .3s;
	transform:scale(1.1);
}
#inline,
.inline {
	padding:15px;
	text-align:left;
}
