_project_lead.scss 1.07 KB
.project-lead{
    width: 100%;
    display: flex;
    min-height: 200px;
    background-color: #F0F0F0;
    color: #000;
    flex-direction: row;
    border-radius: 10px;
    margin:40px 0px;
    padding: 20px;
    overflow: hidden;
    @media screen and (max-width: 900px) {
        flex-direction: column;
        border-radius: 20px;
    }
    .image{
        display: flex;
        flex-wrap: wrap;
        img{
            height: 200px;
        }

    }

    .content{
        width: 75%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-left: 20px;
        @media screen and (max-width: 900px) {
            width: 100%;
            padding-left: 0px;
            padding-top: 20px;
        }
        h2{
            font-size: 25px;
            line-height: 30px;
            font-weight: 700;
            margin-bottom: 20px;
            @media screen and (max-width: 900px) {
                font-size: 24px;
            }
        }
        p{
            font-size: 16px;
            line-height: 20px;
        }
    } 

}