body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f6f6f6;
}

header {
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
}

.logo h1 {
    margin: 0;
}

.menu a {
    margin: 0 15px;
    text-decoration: none;
    color: white;
}

.menu a:hover {
    text-decoration: underline;
}

main {
    padding: 20px;
}

#image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); 
    gap: 20px;
}

.gallery-item {
    position: relative;
    border: 1px solid #ddd;
    padding: 10px;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.gallery-item img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.gallery-item p {
    text-align: center;
    margin: 10px 0 5px;
}

.price-tag {
    display: inline-block;
    background-color: #333;
    color: white;
    padding: 5px 10px;
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-weight: bold;
    border-radius: 3px;
}

form {
    margin-top: 20px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    padding: 10px 15px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #555;
}
