
 @import url('https://fonts.googleapis.com/css2?family=Passion+One&display=swap');


.passion-font{
	font-family: 'Passion One', cursive;
}




/*link design*/

a.button.one{
		margin-right: 8px;
	margin-bottom: 10px;
	background: transparent;
	font-size: 11px;
	text-decoration: none;
	color: white;
	font-weight: bold;
	position: relative;
	padding: 10px;
}

a.button.one:before, a.button.one:after{
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	transition: all 0.3s ease;
}
a.button.one:before{
	top: -2.5%;
	left: -1%;
	border-top: 2px solid white;
	border-left: 2px solid white;	
}
a.button.one:after{
	bottom: -2.5%;
	right: -1%;
	border-bottom: 2px solid white;
	border-right: 2px solid white;
}
a.button.one:hover:before, a.button.one:hover:after{
	width: 100%;
	height: 100%;
	transition: all 0.3s ease;
}


