* {
	margin: 0px;
	padding: 0px;
}

:root {
	--pri: #19647e;
	--sec: #40b2b2;
	--ter: #ffc857;
	--text: #393e41;
	--filter: #2e8080;
	--table-light: #fafafa;
	--table-dark: #f5f5f5;
}

.header {
	background-color: var(--pri);
	height: 70px;
	width: calc(100% - 60px);
	font-family: 'Quicksand', sans-serif;
	color: white;	
	font-weight: 400;
	display: flex;
	justify-content: space-between;
	padding-left: 30px;
	padding-right: 30px;
}

.header-left {
	display: flex;
	align-items: center;
}

.header-right {
	display: flex;
	align-items: center;
	width: 60%;
	justify-content: space-between;
}

.header a {
	text-decoration: none;
	color: white;
	font-size: 15pt;
}

.header h2 {
	font-size: 25pt;
	color: white;
}

.logo-header {
	width: 40px;
	height: 45px;
	background-image: url("../imgs/logo.png");
	background-size: cover;
	background-repeat: no-repeat;
}

.login-button {
	background-color: var(--sec);
	height: 40px;
	width: 140px;
	border-radius: 20px;
	font-weight: 700;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s;
}

.login-button:hover {
	background-color: var(--ter);
}

.llogin-button {
	background-color: var(--sec);
	height: 40px;
	border-radius: 20px;
	font-weight: 700;
	display: flex;
	font-size:16px;
	color:white;
	justify-content: center;
	align-items: center;
	transition: all 0.3s;
}

.llogin-button:hover {
	background-color: var(--ter);
}

.top-img {
	height: 170px;
	width: 100%;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
}

.filter {
	background-color: var(--filter);
	opacity: 0.6;
	z-index: 1;
	width: 100%;
	height: 170px;
}


.top-img h1 {
	font-family: 'Quicksand', sans-serif;
	font-weight: 700;
	font-size: 42pt;
	color: white;
	z-index: 2;
	opacity: 1.0;
	position: absolute;
	line-height: 105%;
	text-align: center;
}

.footer {
	background-color: var(--pri);
	padding-left: 100px;
	padding-right: 100px;
	height: 145px;
	width: calc(100%-200px);
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer-box {
	width: 960px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer a {
	font-family: 'Quicksand', sans-serif;
	font-size: 15pt;
	color: white;
	text-decoration: none;
}

.footer a::after, .header a::after {
	content: '';
	display: block;
	width: 0px;
	height: 3px;
	background-color: var(--ter);
	transition: all 0.3s;
}

.footer #current::after,
.footer a:hover::after,
.header #current::after,
.header a:hover::after {
	width: 100%;
}

.login-button a:hover::after {
	width: 0%;
}

.content {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
