/* USER VARIABLES SECTION */

:root {
	--userfont: roboto-st, sans-serif;
	--systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}


/* FONTS LOAD SECTION */

@font-face { src: url("../fonts/FiraSans-Medium.woff2") format("woff2"); font-family: "FiraSans"; font-weight: 500; font-style: normal; }
@font-face { src: url("../fonts/SaguExora-Regular.woff2") format("woff2"); font-family: "SaguRegular"; font-weight: 400; font-style: italic; }

/* GENERAL CSS SETTINGS */

::placeholder { color: #666; }

input, textarea { outline: none; }
input:focus:required:invalid, textarea:focus:required:invalid { border-color: red; }
input:required:valid, textarea:required:valid { border-color: green; }

body {
	font-family: var(--userfont);
	min-width: 320px;
	position: relative;
	overflow-x: hidden;
	background: #221F1F url("../images/bck.png")no-repeat center right / 15% ;
}
.container {
	min-height: 100vh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.top-logo {
	display: block;
	width: 100%;
	max-width: 551px;
	margin: 0 auto;
	object-fit: contain;



}
.top-logo-txt {
	display: block;
	width: 80%;
	max-width: 972px;
	margin: 60px auto 0;
	object-fit: contain;
}
.footer-text {
	color: #ffffff;
	text-align: center;
	font-size: 36px;
	font-family: 'SaguRegular' , sans-serif;
	padding-bottom: 40px;
	padding-left: 15px;
	padding-right: 15px;
}
.container p span.cursor {
	display: inline-block;
	background-color: #ccc;
	margin-left: 0.1rem;
	width: 3px;
	font-size: 43px;
	animation: blink 1s infinite;
}
.container p span.cursor.typing {
	animation: none;
}
@keyframes blink {
	0%  { background-color: #ccc; }
	49% { background-color: #ccc; }
	50% { background-color: transparent; }
	99% { background-color: transparent; }
	100%  { background-color: #ccc; }
}
.typed-area {
	margin-top: 30px;
	padding: 0 15px;
}
.typed-area p  {
	text-align: center;
	color: #ffffff;
	font-size: 64px;
	font-family: 'FiraSans' , sans-serif;
}
.rotate {
	animation: 30s linear 0s normal none infinite running rot;
	-webkit-animation: 30s linear 0s normal none infinite running rot;
}
@keyframes rot {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
@-webkit-keyframes rot {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* USER STYLES */


