@import url('https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900');
*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

.container2
{
	display: flex;
	justify-content: center;
	align-items: center;
	/* flex-direction: column; */
	flex-wrap: wrap;
}
.container2 a
{
	position: relative;
	width: 200px;
	height: 55px;
	display: inline-block;
	background: #fff;
	margin: 20px;
}
.container2 a:before,
.container2 a:after 
{
	content: '';
	position: absolute;
	inset: 0;
	background: #f00;
	transition: 0.5s;
}

.container2 a:nth-child(1):before,
.container2 a:nth-child(1):after 
{
	background: linear-gradient(45deg,#00ccff,#0e1538,#0e1538,#d400d4);
}
.container2 a:nth-child(2):before,
.container2 a:nth-child(2):after 
{
	background: linear-gradient(45deg,#ff075b,#0e1538,#0e1538,#1aff22);
}

.container2 a:hover:before 
{
	inset: -3px;
}
.container2 a:hover:after 
{
	inset: -3px;
	filter: blur(10px);
}
.container2 a span 
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: inline-block;
	background: #0e1538;
	z-index: 10;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.2em;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #fff;
	border: 1px solid #040a29;
	overflow: hidden;
}
.container2 a span::before 
{
	content: '';
	position: absolute;
	top: 0;
	left: -50%;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.075);
	transform: skew(25deg);
}