.gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 600px;
    margin: auto;
}
.gallery-item {
    text-align: center;
}
.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.caption {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 20px;
}
table {
    width: 80%;
    margin: 0 auto;
    border-collapse: collapse;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
th, td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ccc;
}
th {
    background-color: #007BFF;
    color: white;
}
tr:nth-child(even) {
    background-color: #f2f2f2;
}
caption {
    margin-bottom: 10px;
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
}
