@charset "utf-8";
/* CSS Document */

body {
	background-color: black;
	color: grey;
	margin: 0px;
	padding: 0px;
}

header {
	width: 100%;
	height: 10vw;
	background-color: black;
	color: goldenrod;
	position: relative;
}

/* If the screen size is 601px or more, set the font-size of <div> to 80px */
@media only screen and (min-width: 601px) {
  .naslov {
    font-size: 5vw;
	padding: 20px;
	text-align: center;
	align-content: center;
  }
}

/* If the screen size is 600px or less, set the font-size of <div> to 30px */
@media only screen and (max-width: 600px) {
  .naslov {
    font-size: 3vw;
	padding: 20px;
	text-align: center;
	align-content: center;
  }
}


section {
	position: relative;
	width: 100%
}
