/* PAGE BLOCKS */
* {
	margin: 0;
	padding: 0;
}

body {
	color: #444;
	font-family: sans-serif;

	border-top: 10px solid #1098ad;
}

.container {
	width: 1200px;
	margin: 0 auto;
}

article {
	/*margin-bottom: 60px;*/
	/*flex: 0 0 825px;*/
	flex: 1;
}

.main-header {
	background-color: #f7f7f7;
	padding: 20px 40px;
	margin-bottom: 60px;
	height: 80px;
}

nav {
	font-size: 18px;
}

.post-header {
	margin-bottom: 40px;
}

aside {
	background-color: #f7f7f7;
	border-top: 4px solid #1098ad;
	border-bottom: 4px solid #1098ad;
	padding: 50px 0;
	/*width: 500px;*/

	/*flex-basis: 300px;
	flex-shrink: 0;*/
	flex: 0 0 300px;
}


/* INDIVIDUAL ELEMENTS */

/* NE TREBA VIŠE JER SMO SVE PREBACILI U BODY
h1, h2, h3, h4, p, li {
	font-family: sans-serif;
	color: #444;
}*/

.bold {
 color: #1098ad; 
}

.center {
            text-align: center; /* Centers content horizontally */
        }

h1, h2, h3 {
	color: #1098ad;
}

h1 {
	font-size: 26px;
	text-transform: uppercase;
	font-style: italic;
}

h2 {
	font-size: 40px;
	margin-bottom: 30px;
}

h3 {
	font-size: 30px;
	margin-top: 40px;
	margin-bottom: 20px;
}

h4 {
	font-size: 20px;
	text-transform: uppercase;
	text-align: center;
}

p {
	font-size: 22px;
	line-height: 1.5;
	margin-bottom: 15px;
}

ul, ol{
	margin-left: 50px;
	margin-bottom: 20px;
}

li {
	font-size: 20px;
	line-height: 1.5;
	margin-bottom: 10px;
}

a:link {
	color: #1098ad;
	text-decoration: none;
}

a:visited {
	color: #1098ad;
}

a:hover {
	color: orangered;
	font-weight: bold;
	text-decoration: underline orangered;
}

a:active {
	background-color: black;
	font-style: italic;
}


/* IDs and Classes */


/* INDIVIDUAL ELEMENTS OR SMALLER PARTS */

nav a:link {
	display: inline-block;
	margin-right: 30px;
	/*margin-top:  10pxNEĆEMO JER ĆEMO ALIGNATI U FLEXBOXU*/
}

nav a:link:last-child {
	margin-right: 0;
}

#author {
	font-style: italic;
	font-size: 18px;
	margin: 0;
}

.post-img {
	width: 100%;
	height: auto;
}

#copyright {
	font-size: 16px;
}

.related {
	list-style: none;
}

.related-author {
	/*font-size: 18px;
	font-weight: bold;*/
	font-size: 14px;
	font-weight: normal;
	font-style: italic;
	margin: 0;
}

.headings {
  font-size: 60px;
}




/* FLEXBOX */

.main-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.author-box {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
}

.related-post {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 30px;

}

.related-link:link {
	font-size: 17px;
	font-weight: bold;
	font-style: normal;
	display: block;
	margin-bottom: 5px;
}

.flex-container {
	display: flex;
	gap: 75px;
	margin-bottom: 60px;
	align-items: flex-start;
}




/* JUST FOR SHOWCASE

footer p {
	font-size: 16px;
}


article header p {
	font-style: italic;
}
*/