/* Exported from ChatGPT + mods*/
/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Martel, sans-serif;
}

/* Navigation Menu */
nav {
    background-color: navy; /* Dark blue, similar to the US flag */
    color: white;
    text-align: center;
    padding: 0.5em 0;
    text-decoration: none;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin: 0 15px;
    color: white;
    text-align: center;
    padding: 0.05em 0;
    text-decoration: none;
}

nav ul li a {
    padding: 1em;
    color: white;
    text-decoration: none;
    font-size: 1.2em;
}


.main-content {
    position: relative;
    color: white;
    text-align: center;
    padding-top: 20%;
    text-decoration: none;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 128, 0.5); /* Blue overlay with opacity */
    z-index: -1;
}

/* Section Styles */
section {
    padding: 4em 0;
    text-align: center;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    nav ul li {
        display: block;
        margin: 10px 0;
    }
}
.centered-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
}
