@charset "UTF-8";
/* Global styles for the entire application */

:root {
    --primary-color: #0b370e; /* R=11, G=55, B=14 */
    --secondary-color: #2d312d; /* R=45, G=49, B=45 */
    --text-color: #ffffff; /* R=255, G=255, B=255 */
    --background-color: #252525; /* R=37, G=37, B=37 */
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
	box-sizing: border-box;
}

body {
    min-height: 100vh;
    display:  flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Arimo', sans-serif;
    line-height: 1.6;
    background-color: var(--background-color);
    color: var(--text-color);
}

body > a {
    color: var(--text-color);
    text-decoration: none;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin: 20px 0;
    color: var(--text-color);
}



/* Header and Footer Styles */
 .logo {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 75px;
	width: 75px;
    margin-left: 10px;
	
}

.title {
	display: flex;
    background-color: var(--secondary-color);
    box-shadow: 5px 4px 9px 0px rgba(0, 0, 0, 0.5); /* <-- Drop shadow */
	
}

.title > p {
    color: var(--text-color);
    font-size: 1rem;
    padding-left: 10px;
    padding-right: 20px;
    padding-top: 5px;
    align-self: center; 
    margin-left: auto;
}

.title > h3 {
	align-self: center;
    padding-left: 15px;
    font-size: 24px;


}

@media (max-width: 696px) {
    .title > p {
        display: none;
    }
}

main {
    flex: 1 0 auto;
}


footer > p {
	text-align: center;
	font-size: 14px;
	margin: 20px 0;
	
}

header footer{
	background-color:#fff;
}


/* Navigation styles */

/* nav > ul {
	list-style-type: none;
	display: flex;
		
}

Header{
	display: flex;
	justify-content: space-between;
}

nav {
	align-self: center;
	justify-content: flex-end;
	display: none;
}

li {
	margin: 10pt;
}

a {
    text-decoration: none;
    color: inherit;
} */

/* Responsive Menu */
/* .navbar {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.nav-menu {
    list-style: none;
    display: flex;
}

.nav-menu li {
    margin-left: 20px;
}

.nav-menu a {
    color: #0b370e;;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #0b370e;
    font-size: 24px;
    cursor: pointer;
} */
