body {
    margin: 60px auto;
    width: 70%;
}

nav ul, footer ul {
    font-family:'Helvetica', 'Arial', 'Sans-Serif';
    padding: 0px;
    list-style: none;
    font-weight: bold;
}

nav ul li, footer ul li {
    display: inline;
    margin-right: 20px;
}

a {
    text-decoration: none;
    color: #999;
}

a:hover {
    text-decoration: underline;
}

h1 {
    font-size: 3em;
    font-family:'Helvetica', 'Arial', 'Sans-Serif';
}

p {
    font-size: 1.5em;
    line-height: 1.4em;
    color: #333;
}

footer {
    border-top: 1px solid #d5d5d5;
    font-size: .8em;
}

ul.posts { 
    margin: 20px auto 40px; 
    font-size: 1.5em;
}

ul.posts li {
    list-style: none;
}

/* Profile Container for image and description */
.profile-container {
    display: flex;
    align-items: center; /* Vertically align the image and text */
    margin: 20px 0;
}

.profile-image {
    border-radius: 50%;
    overflow: hidden;
    width: 100px;  /* Set the width */
    height: 100px; /* Set the height to match the width for a square */
    margin-right: 20px; /* Space between the image and the text */
    position: relative; /* For centering the image */
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crop the image to fit the square container */
    position: absolute; /* Center the image */
    top: 0;
    left: 0;
}

.blurb {
    background: #f0f0f0;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px; /* Optional: Control the max width of the text */
    width: 100%; /* Ensure the text block takes full available width */
}

h1 {
    font-size: 2.5em; /* Adjust the header size for better spacing */
    margin-bottom: 10px;
}

p {
    font-size: 1.2em;
    line-height: 1.6em;
    color: #333;
}
