:root {
	--bg: rgb(165, 67, 84);
}

@font-face {
	font-family: Satoshi;
	src: url(Satoshi-Light.ttf);
}

body {
	background-color: var(--bg);
	color: white;
	margin: 0;
	padding: 0;
	font-family: 'Satoshi', sans-serif;
}
.hero {
	background:radial-gradient(pink, var(--bg), var(--bg));
	background-size: 200vmax 200vmax;
	background-repeat: no-repeat;
	background-position: center 0;


	width: 100vw;
	height: 100vh;


	position: absolute;
	

	font-size: max(5vmin, 30px);
	text-transform: uppercase;


	padding: 10px;
	padding-left: 30px;
	padding-right: 30px;


	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;

	animation: rising 2s forwards;

	text-align: center;
	overflow: hidden;
}

@keyframes rising {
	0% {
		background-position: center 0;
	}
	100% {
		background-position: center calc(100vh - 100vmax);
	}
}

@keyframes risingCircle {
	0% {
		translate: -50% 50vmin;
		rotate: -180deg;
	}
	100% {
		translate: -50% 2em;
		rotate: 0;
	}
}
@keyframes risingText {
	0% {
		opacity: 0;
		translate: 0 2em;
	}
	100% {
		opacity: 1;
		translate: 0 0;
	}
}

h1, h2, h3 {
	margin: 0;
}
h1, sub {
	opacity: 0;
	translate: 0 2em;
	animation: risingText 2s forwards;
}
.circle , .circle2 {
	position: absolute;
	width: 100vmin;
	height: 100vmin;
	left: 50%;
}
.circle {
	bottom: -50vmin;
	translate: -50% 50vmin;
	animation: risingCircle 2s forwards;
}
.circle2 {
	top: -70vmin;
	translate: -50% 0;
	scale: 1 -1;
	animation: risingCircle 2s forwards;
}

.nav {
	position: absolute;
	top: 5vmin;
	max-width: 30vmin;
	font-size: 25px;
	animation: risingText 2s forwards;
}
a {
	text-decoration: underline dotted;
	margin: 5px;
	color: inherit;
}

.content {
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	background-color: var(--bg);
	text-align: center;
	font-size: max(2.5vmin, 15px);
	display: flex;
	align-items: center;
	flex-direction: column;
	padding: 20px;
	padding-bottom: 100px;
	padding-top: 100px;
	mask: 
    linear-gradient(0deg,#0000 50px,#000 0) 0 25px,
    radial-gradient(25px,#000 98%,#0000) 50%/46.25px 50px repeat space;
	translate: 0 -50px;
	box-sizing: border-box;
}
.content > * {
	max-width:700px;
	box-sizing: border-box;
}

hr {
	width: 100%;
	color: inherit;
	border: solid white 1px;
	margin-bottom: 30px;
}