
.header {
	background-color: #505050;
	text-align: center;
	padding: 10px;
	color: #f1f1f1;
	font-size: 5vw;
}

.topnav {
	display: flex;
	list-style-type: none;
	margin: 0;
	padding: 0;
	background-color: indigo;
}
.topnav li a {
	display: block;
	color: #f1f1f1;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 2rem;
}
.topnav li a:hover {
	background-color: #911e98;
	color: black;
}
body {
	background-color: #252525;
	margin: 5;
	padding: 5;
	color: #f1f1f1;
	font-size: 1.5rem;
}

.pageContent {
	color: #f1f1f1;
	background-color: #505050;
}

a:link, a:visited, a:active {
		color: #f1f1f1;
	}
a:hover {
		color: #c1c1c1;
	}

.footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 25px;
	font-size: 10px;
	color: white;
	text-align: right;
	background-color: rgba(50,50,50,20);
}

* {
	box-sizing: border-box;
}
.column {
	float: left;
	width: 33%;
	padding: 0 10px;
}
.row {
	margin: 0 -5px; 
}
.row:after {
	content: "";
	display: table;
	clear: both;
}
.card {
	box-shadow: 2px 5px 5px 2px rgba(255, 255, 255, 0.5);
	padding: 16px;
	background-color: #502050;
}
.card:hover {
	background-color: #752075;
}
.card img {
	height: auto;
	width: 100%;
	object-fit: fill;
}
.card a {
	text-align: center;
	display: block;
	padding: 2px 2px;
	text-decoration: none;
}
.card p {
	text-align: left;
}
@media screen and (max-width: 600px) {
	.column {
		width: 100%;
		display: block;
		margin-bottom: 20px;
	}
}
.one-page-title {
	height: 30%;
}
.one-page {
	display: flex;
	height: 70%;
}
.one-page-images {
	width: 100%;
	height: 20%;
	padding: 1rem;

	img {
		width: 100%;
		height: auto;
	}
	img:hover {
		width: 500px;
		height: auto;
	}
	p {
		width: 100%;
		height: auto;
		position: relative;
		padding: 1rem;
		background: rgba(0,0,50, 0.8);
		color: white;
		font-size: 50%;
	}
}
.one-page-info {
	width: auto;
	height: 80%;
}
