:root {
	--main-bg-color: #40275b;
	--alt-bg-color: #f0edff;
}

@-webkit-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}

	50% {
		background-position: 100% 50%
	}

	100% {
		background-position: 0% 50%
	}
}

@-moz-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}

	50% {
		background-position: 100% 50%
	}

	100% {
		background-position: 0% 50%
	}
}

@keyframes Gradient {
	0% {
		background-position: 0% 50%
	}

	50% {
		background-position: 100% 50%
	}

	100% {
		background-position: 0% 50%
	}
}

body {
	display: flex;
	flex-flow: column;

	font-family: 'Open Sans', sans-serif;

	color: #f3ebf9e3;

}

.flex-grow {
	flex-grow: 1;
}

footer {
	background: black;
}

.montserrat {
	font-family: 'Montserrat', sans-serif;
}

a {
	color: white;
}

img {
	object-fit: contain;
}

* {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

html, body {
	padding: 0;
	margin: 0;
}

html {
	height: 100%;
}

body, .site {
	min-height: 100%;
}

.site {
	flex: 1;
	background: radial-gradient(ellipse at bottom right, #734ca8, transparent), #40275b;
/* 
	background: radial-gradient(ellipse at bottom right, #23A6D5, #734ca8), #40275b;
	background-size: 400% 400%;
	-webkit-animation: Gradient 120s ease infinite;
	-moz-animation: Gradient 120s ease infinite;
	animation: Gradient 120s ease infinite; */
}


.dots {
	display: relative;
}

.dots:before {
	content: "";
	display: block;
	position: absolute;
	
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;

	background-size: 40px 40px;
	background-image: radial-gradient(circle, #ffffff44 1px, rgba(0, 0, 0, 0) 1px);

	pointer-events:none;
}

.foreground {
	color: #744da9;
	color: radial-gradient(ellipse at bottom right, #734ca8, transparent), #40275b;
}

.foreground {
	color: #f3ebf9;
	color: radial-gradient(ellipse at bottom right, #734ca8, transparent), #40275b;
}

.shadow {
	/*text-shadow: 0px 0px 6px rgba(0,0,0,0.54);*/

	-webkit-filter: drop-shadow(0px 0px 6px rgba(255, 255, 255, .35));
	filter: drop-shadow(0px 0px 6px rgba(255, 255, 255, .35));
}

.logo {
	min-width: 100px;
}

.textmark {
	position: relative;
	display: inline-block;
	font-size: 3em;
	font-size: 10vw;
	z-index: 20;
}

.textmark::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 15px;
	top: 50%;
	margin-top: -2px;
	background: #7346b5;
	z-index: -1;
}

@media screen and (min-width:60em) {
	.textmark {
		font-size: 4em;
	}
}

.bg-trajectories {
	background: url('assets/drawing.svg');
	background-size: cover;
	min-height: 200px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
}

@media screen and (min-width:60em) {
	.bg-trajectories {
		background: url('assets/drawing.svg');
		background-size: cover;
		min-height: 500px;
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
	}
}

.content {
	z-index: 20;
}

.border-top {
	position: relative;
}

.border-top::before {
	content: '';
	position: absolute;
	width: 60px;
	height: 2px;
	top: 0%;
	margin-top: -2px;
	background: #e1d7eb;
}
