body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #dbe5f1; /* Set a light blue background color */
 
    margin: 0;
    padding: 0;
}

h1 {
text-align: center;
}

.header {
    background-color: #dbe5f1; /* Set a darker blue for the header */
    color: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a shadow to the header */
}

.main-content {
    padding: 40px;
    text-align: center; /* Center align content */
    background-color: #dbe5f1;
}

.main-content h1 {
    color: black;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.main-content h2 {
    color: #555;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.main-content img {
    max-width: 60%; /* Make images smaller */
    height: auto;
    margin: 10px;
    display: inline-block; /* Display images inline */
    border-radius: 10px; /* Add rounded corners to images */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a shadow to images */
    transition: transform 0.3s; /* Add a transition effect */
}

.main-content img:hover {
    transform: scale(1.05); /* Scale up the image on hover */
}
