#startPageMain {
	height: 100%;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-content: center;
	justify-content: center;
	align-items: center;
}

#layer1 path {
	fill: var(--fontColor);

	stroke: var(--fontColor);
	stroke-width: 1px;
	opacity: 0;
	transition: all 0.505s ease-in;
}
#subtitle {
	margin: 16px;
	display: flex;
	flex-direction: row;
	justify-content: center;
}
#subtitle div {
	perspective: 500px;
	font-size: 26px;
	font-family: monospace;
	font-weight: 900;
	color: var(--buttonFontColor);
}
@keyframes fade-in {
	100% {
		opacity: 1;
		filter: blur(0);
		transform: translate(0px, 0px) rotate3d(1, 1, 1, 0turn);
	}
}

.logo {
	max-width: 400px;
	width: 90%;
	filter: blur(4);
	width: 400px;
	height: 86px;
	margin: 16px !important;
}

.logoMainWrapper {
	min-height: 116px;
}

#socialLogos {
	width: 100%;
	display: flex;
	justify-content: center;
}

#socialLogos img {
	height: 34px;
	margin-right: 0.5em;
	margin-left: 0.5em;
	transition: all 0.4s ease-out;
}
#socialLogos img:hover {
	fill: red;
	transform: scale(1.1);
}
@media only screen and (max-width: 500px) {
	#logoWrapper {
		width: 90%;
		left: 5%;
	}

	#subtitle div {
		font-size: 19px;
	}
	.logo {
		width: 300px;
		height: 65px;
	}
	.logoMainWrapper {
		min-height: 97px;
	}
}
