
/*---------------------------- OPĆE ----------------------*/

*{
    font-family: 'Poppins', sans-serif;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	color: #082273;
}
body {margin:0; padding:0;}

h1 , h2 , h3 , h4 , h5 , h6  {
	margin-bottom: 0.7em;
	font-weight: 400;
	text-align: center;
}	
h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.4rem; }
h6 { font-size: 1.2rem; }

a { outline: none !important; }
a:hover { outline: none !important; }

p {
	font-size: 1.2rem;
	font-weight: 300;
	margin-bottom: 1.5em;
	color: #082273;
}

.container {max-width: 90%; margin: 0 auto;}


/* -------------------------------- NAVIGACIJA ------------------------------------- */

nav.glavna-nav {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 999;
	width: 100%;
}

.glavna-nav img {
    padding: 50px 0;
    max-width: 100%;
    height: auto;
}


/* -------------------------------- HERO ------------------------------------- */

.hero {
	background-image: linear-gradient(45deg, #000 3.23%, #fff 97.15%) , url('img/hero.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	width: 100%;
	position: relative;
	top: 0;
	background-blend-mode: screen;
	filter: grayscale(0.8);
}


/* -------------------------------- INDEX ------------------------------------- */


/* -------------------------------- @MEDIA ------------------------------------- */

@media (max-width: 576px){
	html {font-size: 14px;}
	h1 { font-size: 2rem;}
}