.gallery {
    padding: 20px;
    text-align: center;
}
.gallery h2 {
    margin-bottom: 20px;
}
.gallery__container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.photo {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    width: 300px;
    text-align: center;
    background-color: #f9f9f9;
}
.photo img {
    width: 100%;
    cursor: pointer;
}
/* Modal styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}
.modal img {
    max-width: 90%;
    max-height: 90%;
}
.modal .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}