* {
	box-sizing: border-box;
	/* background-color: rgb(32,32,32); */
}

/* Respective elements */

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

.visible {
	display: block;
}

.hidden {
	display: none;
}

body {
	font-size: 100%;
}

/*TOP NAVIGATION BAR*/

.topnav {
	overflow: hidden;
	overflow: auto;
	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;
	color: black;
}

.topnav a.topright {
	float: right;
	padding: 10px 20px;
	margin: 5px 10px 10px 0;
	width: 150px;
	height: 50px;
	border: 3px solid #8eb2b1;
	border-radius: 20px;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	background-color: #ffffff;
	transition: 0.3s;
}

.topnav a.topright:hover {
	background: #efefef;
	border: none;
}

.topnav a.topbutton {
	float: right;
	padding: 10px 20px;
	margin: 5px 5px 10px 0;
	width: 150px;
	height: 50px;
	color: white;
	background-color: #8eb2b1;
	border: 3px solid transparent;
	border-radius: 20px;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25);
	transition: 0.3s;
}

.topnav a.topbutton:hover {
	background: #1c4453;
	border: none;
}

.topnav .icon {
	display: none;
}

@media screen and (max-width: 800px) {
	.topnav a:not(.active) {
		display: none;
	}
	.topnav a.icon {
		float: right;
		display: block;
	}
}

@media screen and (max-width: 800px) {
	.topnav.responsive {
		position: sticky;
		position: -webkit-sticky; /* Safari */
		top: 0;
	}

	.topnav.responsive a.icon {
		position: absolute;
		top: 0px;
		right: 0px;
		max-height: 48px;
		max-width: 47px;
		color: black;
	}

	.topnav.responsive a {
		float: none;
		display: block;
		text-align: center;
	}
	.topnav.responsive a.active {
		width: 171px;
		text-align: left;
	}
	/* te same wartosci co a.topright */
	.topnav.responsive a.topbutton {
		float: none;
		clear: both;
		display: block;
		margin: 0;
		width: 100%;
		text-align: center;
		color: black;
		background-color: white;
		border: 0px solid white;
		border-radius: 0px;
		box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.25);
	}

	.topnav.responsive a.topright {
		float: none;
		clear: both;
		display: block;
		margin: 0;
		width: 100%;
		text-align: center;
		color: black;
		background-color: white;
		border: 0px solid white;
		border-radius: 0px;
		box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.25);
	}

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

/* TOPNAV FORM */

/* Full-width input fields */
input[type='text'],
input[type='password'] {
	display: inline-block;
	padding: 15px;
	margin: 5px 0 22px 0;
	width: 100%;
	background: #f1f1f1;
	border: none;
}

/* Add a background color when the inputs get focus */
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 the link to terms and policy */
.modal a {
	display: inline;
	float: none;
	padding: 0px;
}

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

button:hover {
	opacity: 1;
}

/* Extra styles for the cancel button */
.cancelbtn {
	background-color: #e27148;
}

/* Float cancel and signup buttons and add an equal width */
.cancelbtn,
.signupbtn {
	float: left;
	padding: 14px 20px;
	width: 50%;
}

/* Add padding to container elements */
.container {
	padding: 16px;
}

/* The Modal (background) */
.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	overflow: auto; /* Enable scroll if needed */
	top: 0;
	left: 0;
	padding-top: 50px;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	background-color: rgba(255, 255, 255, 0.9);
	z-index: 1; /* Sit on top */
}

/* Modal Content/Box */
.modal-content {
	margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
	width: 80%; /* Could be more or less, depending on screen size */
	border: 1px solid #888;
	background-color: #fefefe;
	z-index: 2; /* Sit on top */
}

/* Style the horizontal ruler */
hr {
	margin-bottom: 25px;
	border: 1px solid #f1f1f1;
}

/* The Close Button (x) */
.close {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 3.75em;
	font-weight: bold;
	color: black;
}

.close:hover,
.close:focus {
	color: red;
	cursor: pointer;
}

/* Clear floats */
.clearfix::after {
	content: '';
	clear: both;
	display: table;
}

/* Change styles for cancel button and signup button on extra small screens */
@media screen and (max-width: 576px) {
	.modal {
		text-align: center;
	}
	.cancelbtn,
	.signupbtn {
		padding: 0px;
		width: 100%;
		height: 50px;
	}
}

/*CENTRAL CONTENT CONTAINERS*/

/* Typewritter cursor effect settings */

@keyframes blink {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.cursor::after {
	content: '|';
	font-size: 1.5em;
	font-weight: bold;
	animation: blink infinite alternate 0.4s;
	z-index: 0;
}

/* Styles for concent in the central section */

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

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

.column-66 {
	float: left;
	padding: 20px;
	width: 66.66666%;
}

.column-33 {
	float: left;
	padding: 20px;
	width: 33.33333%;
}

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

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

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

@media screen and (max-width: 1000px) {
	.container {
		padding: 1.25em;
	}

	.column-66,
	.column-33 {
		padding: 5px;
		width: 100%;
		text-align: center;
	}

	img {
		margin: auto;
	}

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

	.large-font {
		font-size: 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;
}
