/* Gallery CSS */
.gallery-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 40px 20px 0 20px;
}


.gallery-container h1{
    font-size: 3em; font-weight: 900; text-transform: uppercase;
    
}

@media (min-width: 350px) {
    .gallery-container h1 {
        font-size: 23px; /* Adjust font size for smaller screens */
    }
}

.gallery-container .gallery-heading {
    width: 50%;
    padding-bottom: 50px;
}

.gallery-container .gallery-heading h3 {
    font-size: 3em;
    font-weight: bolder;
    padding-bottom: 10px;
    border-bottom: 3px solid #222;
}

.gallery-container .gallery-heading h3 span {
    font-weight: 100 !important;
}

.gallery-container .gallery-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.gallery-container .gallery-box .gallery-dream {
    display: flex;
    flex-direction: column;
    width: 32.5%;
}

.gallery-container .gallery-box .gallery-dream img {
    width: 100%;
    padding-bottom: 15px;
    border-radius: 5px;
    align-self: flex-start;
}

.gallery-container .gallery-btn {
    margin: 40px 0 70px 0;
    background: #222;
    padding: 15px 40px;
    border-radius: 5px;
}

.gallery-container .gallery-btn a {
    color: #fff;
    font-size: 1.2em;
    text-decoration: none;
    font-weight: bolder;
    letter-spacing: 3px;
}

@media only screen and (max-width: 768px) {
    .gallery-container .gallery-box {
        flex-direction: row;
    }

    .gallery-container .gallery-box .gallery-dream {
        width: 100%;
    }
}

@media only screen and (max-width: 643px) {
    .gallery-container .gallery-heading {
        width: 100%;
    }

    .gallery-container .gallery-heading h3 {
        font-size: 1em;
    }

}


