body {
    font-family:  'Garamond', 'Times New Roman', Times, serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    text-align: center; /* Center text in the body */
}

header {
    background-color: #ffffff;
    color: #333;
    display: flex;
    justify-content: center; /* Center header contents */
    align-items: center; /* Align items in the center */
    padding: 0.5rem 1.5rem;
}

.header-left {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center header left contents */
}

header h1 {
    font-size: 2.5rem;
    margin: 0;
    color: #333;
}

header .bio p {
    font-size: 0.9rem;
    margin: 0;
    color: #333;
}

.welcome {
    align-self: center; /* Center the welcome text */
    margin: 0;
    color: #333;
}

.container-large {
    display: flex; /* Use flexbox for layout */
    justify-content: center; /* Center align the items */
    align-items: stretch; /* Make sure they have equal height */
    margin: 20px 0; /* Add some margin between sections */
    margin-top: 100px;
}

.media-container {
    display: flex; /* Arrange items in a row */
    align-items: stretch; /* Stretch to equal height */
    gap: 10px; /* Space between image and video */
}

.media-image, 
.media-video {
    max-width: 100%; /* Responsive width */
    height: 400px; /* Set a specific height for both media elements */
    object-fit: cover; /* Ensure image and video cover the area without stretching */
}

.media-image {
    width: auto; /* Allow width to adjust automatically */
}

.media-video {
    flex-grow: 1; /* Allow the video to grow to fill available space */
}

.container-medium {
    display: flex; /* Use flexbox to arrange children in a row */
    justify-content: center; /* Center the images */
    gap: 15px; /* Adjust gap if needed */
    max-width: 100%; /* Ensure it doesn't exceed the container width */
    margin: 20px auto; /* Center and add margin around */
    padding: 20px; /* Add padding */
}

.container-medium img {
    width: 400px; /* Set a different width for this container */
    height: auto; /* Maintain aspect ratio */
}

.text-section {
    max-width: 600px; /* Set a max width for the text section */
    margin: 40px auto; /* Center the section with automatic left and right margins */
    padding: 20px; /* Add some padding */
    text-align: left; /* Align text to the left */
    color: #333; /* Text color */
}
.poem {
    margin-left: 120px;
}

.text-section h2 {
    font-size: 1.8rem; /* Set a size for the heading */
    margin-bottom: 10px; /* Space below the heading */
}

.text-section p {
    font-size: 1rem; /* Set a size for the paragraph text */
}

.contact p, footer p {
    font-size: 0.8rem;
    text-align: left; /* Align contact and footer text to the left */
}

footer {
    text-align: center; /* Center text in the footer */
    padding: 20px;
    color: #333;
}
