:root {
	--tmava: rgb(31, 31, 31);
	--svetla: rgb(191, 191, 191);
	
	/*Firefox scrollbar*/
	scrollbar-color: var(--svetla) var(--tmava);
	scrollbar-width: 10px;
}

/*Posuvnik Chrome*/
::-webkit-scrollbar {
	width: 10px;
}

/* Pozadi */
::-webkit-scrollbar-track {
	background: var(--tmava);
}
 
/* Handle */
::-webkit-scrollbar-thumb {
	background: var(--svetla);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: rgb(150, 150, 150);
}

@font-face {
	font-family: Barlow-Light;
	src: url(Barlow-Light.otf);
	/*font-weight: 100;*/
	/*font-stretch: condensed;*/
}

.validator {
	display: none !important;
}

body {
	font-family: Barlow-Light;
	background-color: var(--tmava);
	text-align: center;
	margin: 5% 20%;
}

header {
	margin-bottom: 10%;
}

hr {
	background-color: white;
	border: 2px solid white;
}

h1, p {
	color: white;
}

img {
	width: 100%;
}

a {
	text-decoration: none;
	font-size: 23px;
	color: var(--svetla);
}

a:hover {
	color: white;
}

.statek-box {
	/*display: grid;*/
	display: flex;
	grid-column-gap: 10px;
	margin: 10px 0;
}

.statek {
	display: flex;
	flex: 1;
}

.popisek {
	position: absolute;
	bottom: 0;
	padding: 5px 10px;
	background-color: rgba(0,0,0,0.5);
}

.relative {
	position: relative;
}

@media only screen and (max-width: 600px) {
	body {
		margin: 1% 5%;
	}
}
