*{
	padding: 0;
	margin: 0;

}

body{
	width: 100%;
	height: 100vh;
	overflow: hidden;
	font-family: 'Open Sans', sans-serif;
}

main{
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.caja{
	width: 300px;
	height: 400px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.logo{
	width: 100%;
	height: 300px;
}
.logo img{
	width: 100%;
	height: 100%;
}
.title{
	width: 100%;
	text-align: center;
}
.redes a{
	text-decoration: none;
	color: #000;
	text-align: center;
	font-size: 25px;
	transition: .3s;
}
.redes a:hover{
	color: red;
	transition: .3s;
}
