body {
    font-family: 'Tahoma';
    margin: 0;
    padding: 0;
}
.header {
    background-color: rgb(0, 0, 0);
    padding: 20px;
    text-align: center;
}
.container {
    display: flex;
    justify-content: space-between;
}
.column {
    width: 50%;
}
.column-left {
    background: linear-gradient(90deg, #0097b2, #7ed957);
    padding: 20px;
}
.column-right {
    background: linear-gradient(-90deg, #ff3131, #ff914d);
    padding: 20px;
}
.title {
    font-size: 50px;
    color: white;
    font-weight: bold;
    margin: 0;
    text-align: center;
}
.row-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-top: 30px; 
}
.image-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 5px; /* Adjust this value to make the images closer */
    justify-content: center;
    margin-top: 20px;
}
.image-container {
    text-align: center;
    width: calc(50% - 5px); /* Each image takes up half the width of the container, minus the gap */
}
.image-container img {
    max-width: 75%; /* Adjust this value to make the images smaller */
    max-height: 75%; /* Adjust this value to make the images smaller */
    height: auto;
    display: block;
    margin: 0 auto;
}
.image-container .caption {
    margin-top: 20px;
    font-size: 1.5vw; /* Responsive font size */
}
.button-container {
    text-align: center;
}
.button-container button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}