/* General body styling */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 20px;
    background-color: #c2d6e6; /* Deeper muted blue */
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* Heading styles */
h1 {
    color: #2b3a4a;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Paragraph styles */
p {
    font-size: 1.2rem;
    margin: 10px 0;
    max-width: 600px;
}

/* Image styles */
img {
    width: 90%;
    max-width: 500px;
    height: auto;
    margin: 10px 0;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

/* Footer styles */
footer {
    text-align: center;
    padding: 10px;
    margin-top: 10px;
    background-color: #a9c0d8; /* Slightly darker for contrast */
    color: #333;
    font-size: 14px;
}
