main {
	display: block
}

[hidden] {
	display: none
}

html {
	font-family: sans-serif;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%
}

body {
	margin: 0
}

a:focus {
	outline: thin dotted
}

a:active,
a:hover {
	outline: 0
}

h1 {
	font-size: 2em;
	margin: .67em 0
}

*,
::after,
::before {
	box-sizing: border-box
}

body {
	--color-text: black;
	--color-bg: #8C52FF;
	--color-link: rgb(234, 102, 102);
	--color-link-hover: rgb(234, 51, 51);
	--color-info: #272526;
	--grid-item-bg: white;
	--color-close: #ec1752;
	font-family: Futura, futura-pt, sans-serif;
	min-height: 100vh;
	color: #57585c;
	color: var(--color-text);
	background-color: #fff;
	background-color: var(--color-bg);
	overflow-y: hidden;
	overflow-x: hidden;
}

.js .loading::before {
	content: '';
	position: fixed;
	z-index: 100000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--color-bg)
}

.js .loading::after {
	content: '';
	position: fixed;
	z-index: 100000;
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	pointer-events: none;
	border-radius: 50%;
	opacity: .4;
	background: var(--color-link);
	animation: loaderAnim .7s linear infinite alternate forwards
}

@keyframes loaderAnim {
	to {
		opacity: 1;
		transform: scale3d(.5, .5, 1)
	}
}

a {
	text-decoration: none;
	color: var(--color-link);
	outline: 0
}

a:focus,
a:hover {
	color: var(--color-link-hover);
	outline: 0
}

.icon {
	display: block;
	width: 1.5em;
	height: 1.5em;
	margin: 0 auto;
	fill: currentColor
}

main {
	position: relative
}

.frame {
	position: relative;
	padding: 1.5rem 2.5rem;
}

.frame a:hover {
	color: #4c33f7
}

.title {
	text-align: center
}

.loader-container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 90vh;
	margin-left: calc(10vw - 75px)
}

.loader {
	font-weight: bolder;
	color: #fff;
	margin: 0;
	text-align: center;
	font-size: clamp(3rem, 8vw, 8rem)
}

.content {
	margin: 0 auto;
	grid-template-columns: 100%;
	grid-template-rows: 100%;
	align-items: center;
	pointer-events: none
}

.js .content {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000
}

@media screen and (min-width:55em) {
	.frame {
		display: grid;
		align-items: start;
		justify-items: start;
		grid-template-columns: 40% 60%;
		grid-template-areas: 'title header'
	}

	.title {
		grid-area: title;
		display: flex;
		text-align: left;
		margin-left:50px;
	}

	.loader-container {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 90vh;
		margin-left: calc(28vw - 75px)
	}
}