
@import url('https://fonts.googleapis.com/css?family=Rambla:400,400i');

html {
	width: 100%;
	height: 100%;
}
body {
	background-color: #ff5252;
	background: url(../img/construction-bg.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	margin: 0;
	padding: 0;
	font-family: 'Rambla', sans-serif;
	width: 100%;
	height: 100%;
	color: #313131;
	font-size: 1em;
}

div {
	display: inline-block;
	box-sizing: border-box;
}

a {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

*::-moz-selection { 
	background-color: #ff5266;
	color: white;
}
*::selection {
	background-color: #ff5266;
	color: white;
}



#box {
	position: absolute;
	top: 50%;
 	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	max-width: 500px;
	height: 300px;
	/*background-color: #3b3b3b;*/

	-webkit-box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.7);
	-moz-box-shadow:    0px 0px 100px 0px rgba(0, 0, 0, 0.7);
	box-shadow:         0px 0px 100px 0px rgba(0, 0, 0, 0.7);
}

#box-inner {
	position: absolute;
	top: 50%;
 	left: 50%;
 	width: 530px;
	transform: translate(-50%, -50%);
	text-align: center;
	text-shadow: 0px 0px 15px #fff;
}

.cards {
	display: flex;
	flex-flow: wrap;
	justify-content: center;
	align-items: center;
}

#card-left {
	width: 50%;
	height: 100%;
	background-color: red;
	background: url(../img/moi.jpg) no-repeat;
	background-size: cover;
}

#card-right {
	width: 50%;
	height: 100%;
	/*background-color: blue;*/
}

#circle {
	width: 200px; 
	height: 200px; 
	background: red; 
	-moz-border-radius: 50%; 
	-webkit-border-radius: 50%; 
	border-radius: 50%;
	background: url(../img/cat.jpg) no-repeat;
	background-size: cover;
}

.tag {
	font-size: 0.8em;
}