/* Style the navigation bar */
nav {
    background-color: #001f3f; /* Dark background */
    padding: 10px 0;
    text-align: center;
}

/* Style the navbar list */
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

/* Style navbar links */
nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 15px;
    border-radius: 5px;
}

/* Center image and caption */
.profile {
    text-align: center;
    margin-top: 20px;
}

/* Ensure the image is responsive */
.profile img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Style the caption */
.profile .caption {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    text-align: center;
}
/* Hover effect */
nav ul li a:hover {
    background-color: #555;
}

/* Add some padding to the page content */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    text-align: left;
}
