/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: bisque;
    color: #333;
}

.header {
    text-align: center;
    background-color: #ffa7a7c3;
    color: white;
    padding: 2rem;
}

.gallery {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
}

.gallery-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: #ffc2c2b7;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    max-width: 300px;
    border-right: 4px solid #2c3e50;
}

.gallery-text {
    padding: 1.5rem;
    flex: 1;
}

.gallery-text h2 {
    margin-top: 0;
    color: #2c3e50;
}

.footer {
    text-align: center;
    background-color: #ffc2c2b7;
    color: white;
    padding: 1rem;
}
