/* https://medium.com/%40forfrontendofficial/14-css-shine-effects-for-frontend-3194b796c174 */

.hover-container {
	display: inline;
}

.hover-container:hover .card {
  transform: translateY(-5px);
	outline-color: goldenrod;
	
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.hover-container:hover .card:before {
  left: 100%;
}

.card {
	transition: all 0.3s ease;
	background-color: rgba(64, 32, 128, 0.3);
	outline-style: solid;
	outline-color: gray;
	overflow: hidden;
	
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
}


.card:before {
	content: "";
	position: absolute;
	top: -150%;
	left: -400%;
	width: 400%;
	height: 400%;
	background: linear-gradient(
		135deg,
		transparent,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent,
		transparent
	);
	transition: all 1s;
}



.achievement-link {
	color: burlywood;
	text-decoration: none;
	position: relative;
}

.achievement-link::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1.5px;
  bottom: 0;
  left: 0;
  background-color: burlywood;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.achievement-link:hover::before {
  transform: scaleX(1);
}