
/* CSS Document */

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: consolas;
}

body{
	display: flex;
	flex-wrap: wrap;
	
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	/*background: #111;*/
	background: white;
}

.container{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 40px 0;
	flex-wrap: wrap;
}

#logo{
	float: left;
	margin-top: 10px;
	margin-left: 10px;
	border-radius: 20px;
	padding: 5px;
	border: 2px solid #ccc;
	box-shadow: 5px 5px 0px black;
}

 
h1{
	/*text-align: center;*/
	margin-left: 70px;
	margin-top: 2px;
	font-size: 65px;
	color: transparent;
	background-color: black;    /*letra de fondo*/
	text-shadow: 2px 2px 3px rgba(255,127,0, .8);
	-webkit-background-clip: text;
	-moz-background-clip: text;
	background-clip: text;
}

h5{
	/*text-align: left;*/
	margin-left: 10px;
	margin-top: 2px;
	font-size: 32px;
	color: transparent;
	background-color: yellow;
	text-shadow: 2px 2px 3px rgba(0,255,0, .8);
	-webkit-background-clip: text;
	-moz-background-clip: text;
	background-clip: text;
}

h4{
	text-align: center;
	/*margin-left: 170px;*/
	margin-top: 2px;
	font-size: 24px;
	color: transparent;
	background-color: yellow;
	text-shadow: 2px 2px 3px rgba(0,255,0, .8);
	-webkit-background-clip: text;
	-moz-background-clip: text;
	background-clip: text;
}


.container .box{
	position: relative;
	width: 320px;
	height: 400px;
	/*color: #fff;*/
	color: blue;
	background: #111;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 10px 30px;
	transition: 0.5s;
}

.container .box:hover{
	transform: translateY(-20px);
}

.container .box::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
/*	background: repeating-linear-gradient(45deg, #ffbc00, #ff0058);*/
	background: blue;
}

.container .box:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: white;  /*interior*/
	filter: blur(30px);
}

.container .box:nth-child(2)::before,
.container .box:nth-child(2)::after{
	background: white,blue;
}

.container .box:nth-child(3)::before,
.container .box:nth-child(3)::after{
	background: white,blue;
}

.container .box span{
	position: absolute;
	top: 6px;
	left: 6px;
	right: 6px;
	bottom: 6px;
	background: yellow;
	/*background: rgba(0,0,0,0.6);*/
}

.container .box span::before
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	background: rgba(255,255,255,0.1);
	pointer-events: none;
}

.container .box .content{
	position: relative;
	z-index: 10;
	padding: 20px 40px;
}

.container .box .content h2{
	font-size: 1.4em;
	color: blue;
	margin-bottom: 10px;
}

.container .box .content p{
	font-size: 1em;
	color: darkblue;
	margin-bottom: 10px;
	line-height: 1.2em;
		
}

/*.container .box .content a{
	display: inline-block;
	font-size: 1.1em;
	color: #111;
	background: #fff;
	padding: 10px;
	text-decoration: none;
	font-weight: 500;
}*/


