

.header {
    background-image: url('IMAGE/back.avif'); /* Path to your background image */
    background-size: cover; /* Cover the entire header area */
    background-position: center; /* Center the background image */
    color: white; /* Text color */
    padding: 120px; /* Padding for the header */
    text-align: center; /* Center the text */
}

.content-block {
    flex: 1 1 20%; /* Allow the blocks to grow and shrink, with a base width of 20% */
    border: 1px solid #ccc; /* Add a border */
    padding: 10px; /* Reduced padding */
    margin: 10px; /* Add margin between blocks */
    background-color: #e0f7fa; /* Light blue background color */
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow for depth */
}

.content-block h2 {
    color: #333; /* Darker color for headings */
}

.content-block p {
    color: #736868; /* Lighter color for paragraph text */
    font-size: large;
}

.download-button {
    display: inline-block; /* Make the button inline */
    padding: 8px 12px; /* Reduced padding for the button */
    background-color: #007bff; /* Button background color */
    color: white; /* Button text color */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Rounded corners for button */
}

.download-button:hover {
    background-color: #0056b3; /* Darker button color on hover */
}

.content-container {
    display: flex; /* Use flexbox for layout */
    flex-wrap: wrap; /* Allow wrapping of items */
    justify-content: space-between; /* Space out the blocks */
}



