﻿body {
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background: #240229;
}

#blazor-error-ui {
	background: lightyellow;
	bottom: 0;
	box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
	display: none;
	left: 0;
	padding: 0.6rem 1.25rem 0.7rem 1.25rem;
	position: fixed;
	width: 100%;
	z-index: 1000;
}

	#blazor-error-ui .dismiss {
		cursor: pointer;
		position: absolute;
		right: 0.75rem;
		top: 0.5rem;
	}

.loader {
	position: relative;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: linear-gradient(#14ffe9, #ffeb3b, #ff00e0);
	animation: animateLoader 0.5s linear infinite;
}

@keyframes animateLoader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.loader span {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: linear-gradient(#14ffe9, #ffeb3b, #ff00e0);
}

	.loader span:nth-child(1) {
		filter: blur(5px);
	}

	.loader span:nth-child(2) {
		filter: blur(10px);
	}

	.loader span:nth-child(3) {
		filter: blur(25px);
	}

	.loader span:nth-child(4) {
		filter: blur(50px);
	}

.loader:after {
	content: '';
	position: absolute;
	top: 10px;
	left: 10px;
	right: 10px;
	bottom: 10px;
	background: #240229;
	border-radius: 50%;
}

.wrapper{
max-width: 1550px;
}

.box-container {
	margin: 20px 20px;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	grid-template-rows: auto;
	grid-gap: 60px 60px;
}

	.box-container .box {
		position: relative;
		height: 400px;
		background: #240229;
		display: flex;
		justify-content: center;
		align-items: center;
	}

		.box-container .box:before {
			content: '';
			position: absolute;
			top: -2px;
			left: -2px;
			right: -2px;
			bottom: -2px;
			background: #fff;
			transform: skew(2deg, 2deg);
			z-index: -1;
		}

		.box-container .box:nth-child(1):before {
			background: linear-gradient(315deg, #ff0057,#e64a18);
		}

		.box-container .box:nth-child(2):before {
			background: linear-gradient(315deg, #89ff00,#00bcd4);
		}

		.box-container .box:nth-child(3):before {
			background: linear-gradient(315deg, #e91e63,#5d02ff);
		}

		.box-container .box:nth-child(4):before {
			background: linear-gradient(315deg, #ff0000,#ffc107);
		}

		.box-container .box .box-content {
			position: relative;
			padding: 20px;
		}

			.box-container .box .box-content h2 {
				position: absolute;
				top: -60px;
				right: 20px;
				margin: 0;
				padding: 0;
				font-size: 10em;
				color: rgba(255, 255,255, 0.05);
				transition: 0.5s;
			}

		.box-container .box:hover .box-content h2 {
			top: -140px;
		}

		.box-container .box .box-content h3 {
			margin: 0 0 10px;
			padding: 0;
			font-size: 24px;
			font-weight: 500;
			color: #fff;
		}

		.box-container .box .box-content p {
			margin: 0;
			padding: 0;
			font-size: 16px;
			color: #fff;
		}

		.box-container .box .box-content a {
			position: relative;
			margin: 20px 0 0;
			padding: 10px 20px;
			text-decoration: none;
			border: 1px solid #fff;
			display: inline-block;
			color: #fff;
			transition: 0.5s;
			transform: translateY(-40px);
			opacity: 0;
			visibility: hidden;
		}

		.box-container .box:hover .box-content a {
			transform: translateY(0px);
			opacity: 1;
			visibility: visible;
		}

		.box-container .box .box-content a:hover {
			color: #000;
			background: #fff;
		}
