/* Styling that applies to all/multiple pages */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Courier New', Courier, monospace; 
}

/* Header for Nav bar*/
.project-nav-header {
    background-color: rgba(2, 14, 30,0.9);
    padding: 5px;
    position: sticky; /* Keeps the back button at the top while scrolling */
    top: 0;
    z-index: 100; /* Keeps nav bar in front of everything else */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	text-align: center;
	width: 100%;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    margin: 0px;

}

/* Styling for nav links*/
.nav-return {
	min-width: 100px;
	background-color: rgba(255, 255, 255, 0.90); 
    padding: 10px; 
    border-radius: 55px; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    margin-bottom: 10px;
    margin-top: 10px;
    margin-right: 8px;
    display: inline-block;
    color: #333;
    text-decoration: none;
    font-weight: bold;
	vertical-align: middle;
}

/* --- Styling for the Contact page and Blog page------------------- */
.page-body {
    background-image: url("assets/images/contactbg.png");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
    background-color: #041423;
    padding-bottom: 50px; /* Extra space at the bottom for scrolling */

}

/* Centers everything nicely on the page */
.centered-body {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}