* {
	box-sizing: border-box;
}

/* Respective elements */

html {
	font-family: 'Lucida Sans', sans-serif;
}

.visible {
	display: block;
}

.hidden {
	display: none;
}

/*TOP NAVIGATION BAR*/

.topnav {
	overflow: hidden;
	position: sticky;
	position: -webkit-sticky; /* Safari */
	top: 0;
	background-color: white;
}

.topnav a {
	float: left;
	display: block;
	padding: 14px 16px;
	font-size: 1.0625em;
	text-align: center;
	text-decoration: none;
	color: black;
}

.topnav a:hover {
	color: black;
	background-color: #ddd;
}

.topnav a.active {
	padding: 9px 16px;
	font-family: 'Lucida Sans', sans-serif;
	font-size: 1.5625em;
	font-weight: 600;
	text-transform: uppercase;
}

@media screen and (max-width: 600px) {
	.topnav.responsive {
		position: sticky;
		position: -webkit-sticky; /* Safari */
		top: 0;
	}
	.topnav.responsive .active {
		float: none;
		display: block;
		width: 100%;
	}
}

/* SIGN-IN FORM */

/* Full-width input fields */
input[type='text'],
input[type='password'] {
	display: inline-block;
	box-sizing: border-box;
	padding: 12px 20px;
	margin: 8px 0;
	width: 100%;
	border: 1px solid #ccc;
	background: #f1f1f1;
}

input[type='text']:focus,
input[type='password']:focus {
	width: 100%;
	outline: none !important;
	background-color: white;
	border: 2px solid #8eb2b1;
	box-shadow: 0 0 10px #8eb2b1;
}

/* Set a style for all buttons */
button {
	padding: 15px 10px;
	width: 100%;
	color: white;
	background-color: #8eb2b1;
	border: none;
	cursor: pointer;
}

button:hover {
	background-color: #1c4453;
}

/* Extra styles for the cancel button */
.cancelbtn {
	padding: 10px 15px;
	width: auto;
	background-color: #e27148;
}

.cancelbtn:hover {
	background-color: #f44336;
}

.container {
	padding: 16px;
}

.container a:link,
.container a:visited {
	text-decoration: none;
	color: black;
}

span.psw {
	float: right;
	padding: 10px;
	color: white;
	background-color: #1c4453;
	border-radius: 10px;
}

span.psw:hover {
	background-color: #f44336;
}

/* Add Zoom Animation */
.animate {
	-webkit-animation: animatezoom 0.6s;
	animation: animatezoom 0.6s;
}

@-webkit-keyframes animatezoom {
	from {
		-webkit-transform: scale(0);
	}
	to {
		-webkit-transform: scale(1);
	}
}

@keyframes animatezoom {
	from {
		transform: scale(0);
	}
	to {
		transform: scale(1);
	}
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
	span.psw {
		display: block;
		float: none;
	}
	.cancelbtn {
		width: 100%;
	}
}

/*CENTRAL CONTENT CONTAINERS*/

.container {
	padding: 20px;
	border-radius: 15px;
}

.row:after {
	content: '';
	display: table;
	clear: both;
}

.column-50 {
	float: right;
	padding: 20px;
	width: 50%;
}

.large-font {
	font-family: 'Courier New', Courier, monospace;
	font-size: 3em;
}

.xlarge-font {
	font-family: 'Times New Roman', Times, serif;
	font-size: 4em;
}

.container p {
	margin-left: 15px;
	font-style: oblique;
}

img {
	display: block;
	margin: auto;
	max-width: 100%;
	height: auto;
}

@media screen and (max-width: 1000px) {
	.column-50 {
		padding: 5px;
		width: 100%;
		text-align: center;
	}
	img {
		margin: auto;
	}
	.large-font {
		font-size: 1.25em;
	}

	.xlarge-font {
		font-size: 1.875em;
	}

	.container {
		padding: 1.25em;
	}
}

/*BOTTOM NAVIGATION BAR*/

.footer {
	padding: 15px;
	font-size: 0.75em;
	text-align: center;
	color: #ffffff;
	background-color: #111;
}

/* Set a style for the link to terms and policy */
.footer a {
	display: inline;
	padding: 14px 16px;
	font-size: 0.75em;
	text-align: center;
	text-decoration: none;
	color: white;
}
