/* Apply styles to the body */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Apply styles to the header and navigation */
header {
    background-color: #333;
    color: white;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

/* Apply styles to the main content */
main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px;
}

/* Apply styles to the image containers */
.large, .small {
    text-align: center;
    margin-bottom: 20px;
}

/* Apply styles to the images to make them responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Apply styles to the footer */
footer {
    background-color: #333;
    color: white;
    padding: 10px;
}
