/* General styles */
h1{
    color: #327A9D;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header styles */
header {
    background-color: #F9DBBA;
    width: 100%;
    padding: 1rem;
    text-align: center;
    color: white;
}

header h1 {
    margin: 0;
    font-size: 2rem;
}

/* Main content styles */
main {
    width: 100%;
    padding: 2rem;
    display: flex;
    justify-content: center;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    width: 100%;
    max-width: 1200px;
}

.image-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.image-item img:hover {
    transform: scale(1.05);
}

/* Footer styles */
footer {
    background-color: #282c34;
    width: 100%;
    padding: 1rem;
    text-align: center;
    color: white;
}
