/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Bebas+Neue&display=swap');

/* CSS Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
	font-family: "Archivo Black", sans-serif;
	background-color: #eee;
}
a {
	text-decoration: none;
}
main, footer {
	padding: 0 60px;
	margin: 0 auto;
	max-width: 1200px;
}

header {
	background: linear-gradient(to right, #117, #0d47a1);
	padding-top: 20px; padding-bottom: 20px;
	color: white;
}

.navbar {
	background-color: #0d47a1;
	padding: 15px;
	margin-bottom: 20px;
	display: flex;
	justify-content: center;
}

.navbar li {
	
}

.navbar a {
	color: white;
	margin: 0 15px;
	padding: 5px 10px;
	border-radius: 8px;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
}

.navbar a:hover {
	background-color: #1a237e;
}

.navbar a.active {
	background-color: #1a237e;
}

.links {
	display: flex;
	justify-content: center;
	margin-top: 10px;
}

.links a {
	color: white;
	background-color: #0d47a1;
	padding: 5px 10px;
	border-radius: 8px;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
	margin: 0 10px;
}

main > img {
	width: 100%;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
	border-radius: 10px;
	border: 3px solid black;
}
.gallery2 {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
}
.gallery2 img {
	width: 48%;
	border-radius: 8px;
	border: 2px solid black;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}
.gallery3 {
	display: flex;
	justify-content: space-between;
}
.gallery3 img {
	width: 31%;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
	border-radius: 10px;
	border: 2px solid black;
}
article, .gallery3 {
	background-color: white;
	padding: 20px;
	margin: 20px auto;
	border-radius: 8px;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}
article p {
	letter-spacing: .03em;
	line-height: 1.5;
	word-spacing: .1em;
}

h1 {
	color: #eee;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
	display: block;
	padding: 0 5%;
	margin: 0 auto;
	max-width: 1200px;
}

h2 {
	color: #0d47a1;
	border-bottom: 3px solid #0d47a1;
	padding-bottom: 10px;
}


.hr-class {
	height: 3px;
	background-color: #0d47a1;
	border: 0;
	margin: 20px auto;
}

.columns {
	margin-top: 10px;
	display: flex;
	justify-content: space-between;
}
.columns p {
	flex: 0 0 30%;
}
.columns p:nth-of-type(2) {
	flex: 0 0 35%;
	border-left: 2px solid black;
	border-right: 2px solid black;
	padding: 0 15px;
}
footer {
	margin-bottom: 20px;
}
.top {
	background-color: #0d47a1;
	color: white;
	padding: 10px 20px;
	border-radius: 25px;
	text-decoration: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
}

table {
	margin: 50px auto;
	border: 3px solid #0d47a1;
	border-collapse: collapse;
}

table th, table td {
	border: 3px solid #0d47a1;
	padding: 10px;
}
table th[scope="row"] {
	background-color: #def;
}
table th[scope="col"] {
	background-color: #9bd;
}
table th:nth-child(4),
table td:nth-child(4) {
	width: 30%;
}