/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    max-width: 1200px;
    text-align: center;
}

/* Header */
header {
    margin-bottom: 20px;
}

h1 {
    font-size: 2em;
    margin: 0;
}

/* Two Column Layout */
.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

/* Invitation Styling */
.invitation img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border: 2px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Photo Grid (3x3) Styling */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
}

.photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
        align-items: center;
    }

    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on smaller screens */
    }
}

@media (max-width: 480px) {
    .photo-grid {
        grid-template-columns: 1fr;
        /* 1 column on very small screens */
    }
}