/* Centering the main page header (h1 tag) */
h1 {
    text-align: center;
}

/* Centering the site navigation (nav tag) */
nav {
    text-align: center;
}

/* Centering the footer information (footer tag) */
footer {
    text-align: center;
}

/* CSS body rule */
body {
    background-color: #ede8e3; /* Set your desired background color */
    color: #333; /* Set your desired font color */
    font-family: Arial, sans-serif; /* Set your desired font family */
    margin: 10px; /* Apply a 10 pixel margin */
}

/* adding style to images*/
style
    .image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh; /* Adjust as needed */
    }
