main {
    max-width: 1280px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.project-banner {
    font-family: "the-seasons", sans-serif;
    font-size: 3em;
    color: #FFFFFF;
    background-color: #685B4D; 
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 350px; /* Adjust the height as needed */
    align-items: center;
    justify-content: center;
}
   
   /* Text container */
.banner-text {
    grid-area: 1 / 1 / 2 / 2;
    display: flex;
    flex-direction: column;
    color: white; /* Adjust text color as needed */
}

.text-line-top {
    text-align: center;
    justify-content: center;
}

.text-line-bottom {
    text-align: center;
    justify-content: center;
}

/* Stand out font  in bannner */
.ideas {
    font-family: "Over the Rainbow", cursive;
    font-size: 1.3em;
    padding: 4px;
    color: #E9DCCC;
}

.all-projects {
    background-color: #FAF9F6;
    padding-top: 20px;
    padding-bottom: 20px;
    
}

.projects-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.projects-text {
    width: 50%;
    color:#685B4D;
    padding-left: 143px;
    padding-right: 30px;
}

.projects-container .projects-text h1 {
    font-family: "Over the Rainbow", cursive;
    font-size: 20px;
}

.projects-container .projects-text h2 {
    font-family: "the-seasons", sans-serif;
    font-size: 40px;
    padding-bottom: 10px;
}

.projects-container .projects-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    padding-bottom: 30px;
}

.projects-text a.see-project {
    text-decoration: none;
    color: #685B4D;
    transition: all 0.3s ease;
    font-size: 20px;
}

.projects-text a.see-project:hover {
    font-size: 23px;
    text-decoration: underline;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.projects-image {
    width: 50%;
    padding-right: 143px;
}

.projects-image img {
    width: 100%;
    height: auto;
    transition: all .2s ease-in-out;
}
 
.projects-image img:hover {
    transform: scale(1.03); /* Increase size by 10% on hover */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Add shadow */
}

/* Responsive styles */
@media (max-width: 768px) {
    .project-banner {
        font-size: 2.4em;
    }

    .projects-container {
        flex-direction: column;
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 0px;
        padding-right: 0px;
    }

    .projects-image {
        width: 100%;
        padding-right: 0px;
    }

    .projects-text {
        order: 2;
        padding-right: 16px;
        padding-left: 16px;
        width: 100%;
    }

    .all-projects {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .projects-container .projects-text h1 {
        font-size: 20px;
        justify-content: left;
    }
    
    .projects-container .projects-text h2 {
        font-size: 30px;
        padding-bottom: 0px;
        padding-top: 0px;
    }
    
    .projects-container .projects-text p {
        font-family: 'Montserrat', sans-serif;
        font-size: 15px;
        padding-bottom: 10px;
    }

    .projects-text a.see-project {
        font-size: 15px;
    }
    
    .projects-text a.see-project:hover {
        font-size: 15px;
    }

    .projects-image {
        order: 1;
    }

    .projects-image img {
        width: 100%;
        height: auto;
        padding-right: 16px;
        padding-left: 16px;
    }
    .footer-left-column {
        margin: 0px;
    }

    .footer-right-column {
        margin: 0px;
    }
}

@media (max-width: 430px) {
    .text-line-top {
        text-align: left;
        justify-content: left;
        padding-left: 16px;
    }
    
    .text-line-bottom {
        text-align: left;
        justify-content: left;
        padding-left: 16px;
    }
    
    /* Stand out font  in bannner */
    .ideas {
        font-family: "Over the Rainbow", cursive;
        font-size: 1.3em;
        color: #E9DCCC;
    }
}