<style>
body {
    margin: 0;
    font-family: 'sans-serif';
    color: #0000;
}
/*Marine Banner split in half, case sensitive */
.Marine-Banner {
    background-image: url('/static/marineflagbackground.png');
    background-size: contain;
    background-position: center;
    text-align: center;
    color: white;
    padding: 2rem 1rem;
    position: relative;
    height: 600px;
}
/*profile pic in center of Marine Flag */
.profile-pic {
    width: 280px;
    height: 450px;
    border-radius: 50%;
    border: 4px solid white;
    object-fit: fill;
    margin-top: 2rem;
}
h1 {
    margin-top: 1rem;
    font-size: 2.5rem;
    font-weight: bold;
}

h2 {
    margin-top: 0.5rem;
    background-color: rgba(0, 0, 0, 0.5);
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}
.nav-buttons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
        
}
.btn {
    position: absolute;
    background-color: rgb(255, 217, 0);
    color: #000;
    text-decoration: none;
    padding: 0.6rem 1rem;
    font-weight: bold;
    border-radius: 6px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}
.top-left {
    top: 100px;
    left: 600px;
}

.top-right {
    top: 100px;
    right: 600px;
}

.bottom-left {
    bottom: 200px;
    left: 575px;
}

.bottom-right {
    bottom: 200px;
    right: 575px;
}
.nav-buttons a:hover {
    background-color: #e04f4f;
    color: white;
}

/* Bottom Bio Section */
.bio-section {
    background-color: white;
    padding: 2rem;
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: auto;
}