/* Reset some default styles */
body, h1, h2, p, ul {
    margin: 0;
    padding: 0;
}

/* Set a background color and font styles */
body {
    font-family: Arial, sans-serif;
    background-color: #D5DBDB;
}

/* Style the header */
header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* Style the navigation menu */
nav ul {
    list-style: none;
    text-align: center;
}

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

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

/* Style the main content section */
main {
    padding: 20px;
}

section {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

/* Style the footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
}

/* Media query for iPhone screens */
@media screen and (max-width: 375px) {
    /* Adjust the styles for smaller screens (iPhone width) */
    header {
        padding: 10px;
    }

    nav li {
        margin-right: 10px;
    }

    main {
        padding: 10px;
    }
}

/* Style the image container */
.image-container {
    text-align: center;
}

.image-container img {
    max-width: 100%;
    height: auto;
}
