/* Basic styling for elements */
body {
    font-family: sans-serif;
    margin: 0;
}

header {
    background-color: #f0f0f0;
    padding: 20px;
    text-align: center;
}

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

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

section {
    padding: 40px;
    text-align: center;
}

.items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.item {
    width: 600px;
    margin: 10px;
    border: 1px solid #ccc;
    padding: 15px;
}

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

form input, form textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
}

footer {
    background-color: #f0f0f0;
    padding: 10px;
    text-align: center;
}
