h1 {
    text-align: center; /* Centers the text */
    font-size: 36px; /* Adjust the font size as needed */
    margin-top: 20px; /* Optional: Add spacing above the title */
    margin-bottom: 20px; /* Optional: Add spacing below the title */
}

body {
    background-image: url('/images/HIMB_aerial.jpeg'); /* Update the path to your background image */
    background-size: cover;
    background-position: center;
    color: #333; /* Change text color if needed */
    padding: 20px; /* Add padding around the body */
}

.content {
    text-align: center;
    max-width: 1200px; /* Limit width for better readability */
    margin: 0 auto; /* Center the content */
    font-size: 19px; /* Adjust font size as needed */
    line-height: 1.6; /* Increase line height for better readability */
    padding: 20px; /* Add padding to the content area */
    background-color: rgba(255, 255, 255, 0.7); /* Optional: Add a semi-transparent background for contrast */
    border-radius: 10px; /* Optional: Add rounded corners */
}

h1, h2, h3 {
    margin-bottom: 20px; /* Add spacing below headers */
}

p {
    margin-bottom: 15px; /* Add spacing below paragraphs */
}

