@font-face {
	font-family: "PF";
	src: url("./fonts/PlayfairDisplay-Regular.ttf");
}

@font-face {
	font-family: "QC";
	src: url("./fonts/Quattrocento-Regular.ttf");
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	width: 100%;
	height: 100vh;
}

.container {
	width: 100%;
	height: 100%;
	background: url("../img/bg.png");
	background-size: cover;
	position: relative;
	overflow-y: auto;
	overflow-x: hidden;
}

.navbar {
	width: 100%;
	height: 50px;
	border-bottom: 2px solid black;
	display: flex;
}

.navbar a {
	display: inline-block;
	max-width: 200px;
	height: 100%;
	font-family: "PF";
	font-size: 18px;
	color: black;
	text-decoration: none;
	padding: 12px 17px 0 17px;
	text-align: center;
}

.navbar a:hover {
	text-decoration: underline;
}

.main-content {
	width: 100%;
	height: auto;
	position: relative;
}

/*MAIN CONTENT*/
.header {
	width: 100%;
	height: 50px;
	margin-top: 60px;
}

.header h1 {
	font-family: "PF";
	font-weight: 700;
	font-size: 35px;
	display: inline-block;
	width: 100%;
	height: 100%;
	text-align: center;
}

.article {
	margin: 60px auto;
	max-width: 900px;
	height: auto;
	padding: 13px;
}

.article p {
	font-family: "QC";
	font-size: 16px;
	display: inline-block;
	text-align: justify;
}

.home-images {
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
}

.home-images .content {
	width: 300px;
	height: auto;
	position: relative;
	margin: 14px;
}

.home-images .content a {
	display: inline-block;
	opacity: 0;
	width: 100%;
	height: 100%;
	text-decoration: underline;
	font-family: "QC";
	font-size: 19px;
	color: white;
	background-color: black;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: 200ms ease;
	display: flex;
	justify-content: center;
	align-items: center;
}

.home-images .content:hover a {
	opacity: 0.8;
}

.home-images .content img {
	width: 100%;
}


.home-images .content p {
	font-size: 10px;
	font-family: "QC";
}

.article-image {
	width: 75%;
	height: auto;
	padding: 20px 10px;
	margin: 20px auto;
	border-top: 1px solid #625D5D;
	border-bottom: 1px solid #625D5D;
}

.article-image .article-image-content {
	margin: auto;
	width: auto;
	max-width: 600px;
	height: auto;
}

.article-image .article-image-content img {
	width: 100%;
}

.article-image .article-image-content p {
	font-size: 10px;
	font-family: "QC";
}

/*MAIN CONTENT*/

.footer {
	position: fixed;
	bottom: 0;
	left: 0;
	height: 25px;
	border-top: 1px solid black;
	width: 100%;
	text-align: center;
	font-family: "PF";
	padding-top: 3px;
	font-size: 12px;
}

@media only screen and (max-width: 1650px) {
	.footer {
		position: static;
	}
}

@media only screen and (max-width: 600px) {
	
	.navbar a {
		font-size: 13px;
		padding: 14px 17px 0 17px;
	}

	.header h1 {
		font-size: 17px;
	}

	.article p {
		font-size: 14px;
	}
}