html {
    overflow-y: scroll;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding-bottom: 100px;
    background-color: #f5f5f5;
    text-align: left;
}

nav {
    background-color: #333;
    padding: 10px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

nav ul li a:hover {
    text-decoration: underline;
}

.content {
    padding: 20px;
}

h1 {
    color: #333;
    text-align: center;
}

h2 {
    text-align: left;
}

p {
    color: #555;
    font-size: 16px;
    line-height: 1.5;
}

.photo-container {
    text-align: center;
    margin: 20px 0;
}

.photo-container img {
    max-width: 100%;
    width: 200px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    display: flex;
    position: fixed;
    bottom: 0;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer-item {
    flex: 1; /* Optional: Distributes space evenly */
    display: inline-block;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0;
    padding: 15px;
    display: inline-block;
}

footer a:hover {
    text-decoration: underline;
}