.gallery {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}
.gallery-item {
    width: calc(33.33% - 10px); /* 33.33% of the container minus padding */
    box-sizing: border-box;
    padding: 5px;
    text-align: center;
    float: left; /* Add float to make them align in a row */
}

.gallery-item img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: transform 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.05);
}
.banner {
    background: linear-gradient(45deg, #5eb9f0, #45c4a0);
    text-align: center;
    padding: 50px 0;
    color: #fff;
}

.banner h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.banner p {
    font-size: 1.2em;
}