@charset "utf-8";

@font-face {
	font-display: swap;
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/roboto-v48-latin-regular.eot');
	src: url('../fonts/roboto-v48-latin-regular.eot?#iefix') format('embedded-opentype'),
		url('../fonts/roboto-v48-latin-regular.woff2') format('woff2'),
		url('../fonts/roboto-v48-latin-regular.woff') format('woff'),
		url('../fonts/roboto-v48-latin-regular.ttf') format('truetype'),
		url('../fonts/roboto-v48-latin-regular.svg#Roboto') format('svg');
}

/* roboto-700 - latin */
@font-face {
	font-display: swap;
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/roboto-v48-latin-700.eot');
	src: url('../fonts/roboto-v48-latin-700.eot?#iefix') format('embedded-opentype'),
		url('../fonts/roboto-v48-latin-700.woff2') format('woff2'),
		url('../fonts/roboto-v48-latin-700.woff') format('woff'),
		url('../fonts/roboto-v48-latin-700.ttf') format('truetype'),
		url('../fonts/roboto-v48-latin-700.svg#Roboto') format('svg');
}

:root {
	font-size: 16px;
}


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}

body {
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #1e1e1e;
	color: #fff;
	font-family: "Roboto", "Arial", sans-serif;
	text-align: center;
}

#wrapper {
	animation: fadeIn 1s ease-in;
	padding: 25px;
}

h1 {
	font-size: 2.4rem;
	margin: 20px 0 10px
}

p {
	opacity: .8;
	font-size: 1.187rem
}

/* roți dințate animate */
.gear {
	width: 80px;
	height: 80px;
	border: 10px solid #ffcc00;
	border-radius: 50%;
	position: relative;
	display: inline-block;
	margin: 0 20px;
	animation: spin 4s linear infinite;
}

.gear::before,
.gear::after {
	content: '';
	position: absolute;
	background: #1e1e1e;
}

.gear::before {
	top: -10px;
	left: 35px;
	width: 10px;
	height: 100px
}

.gear::after {
	left: -.625rem;
	top: 2.187rem;
	width: 6.25rem;
	height: .625rem;
}

.gear-right {
	animation-direction: reverse
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: scale(.95);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

