

/* NEW HEADER  */

.header {
	background-image:url("images/emptyheader.png");
	background-position:center;
	background-size:cover;
	height:80px;
	display:flex;
	align-items:left;
	color:white;
	gap:20px;
	padding:15px 10px;
}


/*  NEW LOGO   */
.logo img {height:70px; }


.header-text h1 {
	margin:0;
	font-size:26px;
	font-weight:700;
	letter-spacing:0.5px;
}


.header-text p {
	margin:3px 0;
	font-size:14px;
	opacity:0.9;
}

/* RESPONSIVE  */
@media (max-width:768px) {

.header  {
	flex-direction:row;
	text-align:left;
}
.logo img {height:50px;}

.header-text h1 {
	font-size:20px;
	}
.header-text p {line-height:14px;}
}


/* HEADER ENDS HERE  */


/* NAV STARTS HERE  */

/* NAVBAR */
nav {
    background: #002147;
    display: flex;
    justify-content: center;
    flex-wrap:wrap;
}

nav a {
    color: white;
    padding: 14px 18px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

nav a:hover {
    background: #0056b3;
}

@media (max-width:768px) {
nav a {padding: 10px 8px;
	font-size:12px;}
}

/* NAV ENDS HERE  */

/* FOOTER */
.footer {
    background: #002147;
    color: white;
    padding: 30px;
    text-align: center;
}
.footer a { color:yellow;}
