:root {
	--accent: #8A2BE2;
	--accent-light: #9641E5;
	--dark: #0a0a0a;
	--light: #CCC;
	--light-transparent: #CCC2;
	--dark-transparent: #222B;
}

::-moz-selection { background: var(--accent); color: var(--light); }
::selection { background: var(--accent); color: var(--light); }

* { 
	box-sizing: border-box;
	transition: all .3s; }

html, body {
	margin: 0;
	padding: 0;
	font-family: sans-serif;
	font-size: 14px;
	font-weight: normal;
	line-height: 1;
	color: var(--light);
	background: var(--dark);
}
body::before, 
body::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
body::before {
	background:  url(forest.jpg) no-repeat 50% / cover var(--dark);
}
body::after {
	background: var(--dark);
	opacity: .9;
}
.wrap {
	position: relative;
	display: flex;
	flex-flow: column;
	min-height: 100vh;
	z-index: 10;
}
.title {
	position: relative;
	margin-top: 50px;
	text-align: center;
}
a, a:active, a:visited {
	font-weight: normal;
	color: var(--light);
	text-decoration: none;
}
a:hover {
	color: var(--accent-light);
}
.back {
	width: 100%;
	margin: 25px 0;
}
.zile {
	position: relative;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	gap: calc(1vw + 5px);
	width: 90%;
	max-width: 850px;
	margin: 0 auto 50px;
}
.zi {
	display: flex;
	flex-flow: column;
	gap: calc(1vw + 5px);
	padding: calc(1vw + 5px);
	text-align: center;
	font-weight: bold;
	background: var(--dark-transparent);
	border: 1px solid var(--light-transparent);
}
.zi a {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px;
	border: 1px solid var(--accent);
	outline: 1px solid transparent;
	outline-offset: 25px;
}
.zi a:hover {
	outline: 1px solid;
	outline-offset: 5px;
	color: var(--accent);
}
.btn-grup {
	display: flex;
	gap: 5px;
}
a.btn-arhiva {
	position: relative;
	padding: 1em;
	background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAMAAADXqc3KAAAARVBMVEUAAADLy8vMzMzNzc3MzMzS0tLMzMzMzMzMzMzMzMzMzMzNzc3MzMzMzMzMzMzLy8vNzc3MzMzMzMzMzMzMzMzKysrMzMzkrUSlAAAAFnRSTlMAgPTJTAf50L6Hbhvu041sR9a4eDIitCHUhwAAAHpJREFUKM+9j1kWgCAIRQXLtHlk/0vNHEJcgO9L7uUIqJaZnJ5xWZ+ab4ZCzCW5oz9ryXcq0mXaj9qU4shTlwS+Ijzu2D9QLeZz98+RhEgBpbQUvAHmlhSItc2CnOCE/BUwD4KHQ8HJ+nXZgDh/YsOBcOKmUVC0nWqSF2PyE/PnenAzAAAAAElFTkSuQmCC') no-repeat 50% / 80%;
}
a.btn-arhiva:hover {
	background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAMAAADXqc3KAAAARVBMVEUAAACJK+KLK+KKK+KKK+OKK+KLK+GJJNuKK+KKK+OLK+OKK+KJK+KKK+OMK+OKK+KKK+KLK+KKK+GKKeCHLeGJLuSKK+JeqwruAAAAFnRSTlMAgPTJbdFMB/m+h+6NRxrW1Lh4MiIcZfM5YAAAAHlJREFUKM+9kNkRwCAIBQVzGHNf9F9qJgpBUoDvS3YZRF3NLNGPuE3XnzeBUsJheaQvU8lnKtIJ7RsfSrEyv1sGb5EOZ+4XrmLc53cdMoIDznkrdAOUFg7kehBB0XBCHQXMRejlwJxH9a0aMM9f1GiAvwQNxaFzVfIARAcT2lO9ubAAAAAASUVORK5CYII=') no-repeat 50% / 80%;
}
a.btn-arhiva::after {
	content: 'Descarcă arhiva';
	position: absolute;
	top: -1px;
	left: -200px;
	width: max-content;
	padding: 9px 5px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: -0.7px;
	color: var(--light);
	background: var(--accent);
	opacity: 0;
	transition: all .3s ease-in-out 0s;
	pointer-events: none;
}
a.btn-arhiva:hover::after {
	left: -99px;
	opacity: 1;
	transition: all .3s ease-in-out .3s;
}
.disabled a {
	pointer-events: none;
	filter: blur(1px);
	border-color: var(--light);
	opacity: 0.5;
}
.footer {
	margin-top: auto;
	padding: 0 0 25px;
	text-align: center;
}
.footer a {
	display: inline-block;
}
.footer:hover a {
	transform: scale(1.1)
}
.footer a:hover {
	transform: scale(1.2)
}