body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    color: black;
}

.container {
    width: 70%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
}

.project {
    margin-bottom: 60px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
}

.project h3 {
    padding: 10px;
    margin: 0;
    background-color: #0089f0;
    color: #fff;
    text-align: left;
    font-size: 1.4em;
}

.project-details {
    display: flex;
    flex-direction: row;
    align-items:center;
    padding: 20px;
    vertical-align: middle;

}

.project .proj-img {
    width: 50%;
    display: flex;
    align-items: center;
    border-radius: 5px;
}

.project .proj-img img{
    width: 100%
}

.project .proj-img .imerg_val{
    width: 66%;
    padding-left: 40px;

}


.project .description {
    width: 50%;
    text-align: left;
    padding-top: 20px;
    padding-left: 20px;
    font-size: 1em;
    
}

/* .even .project-details {
    flex-direction: row-reverse;
} */

@media (max-width: 768px) {
    .container {
        width: 90%;
    }    
    .project-details {
        flex-direction: column;
    }

    .even .project-details {
        flex-direction: column;
        align-items: center;
    }

    .project .proj-img  {
        width: 100%;
        margin: 0 0 20px 0;
    }

    h1{
        font-size: 1.2em;
    }
    .project h3{
        font-size: 1em;
    }

    .project .description {
        width: 100%;
        font-size: 0.8em;
    }

}

@media (max-width: 480px) {
    .container {
        width: 90%;
    }    
    .project-details {
        flex-direction: column;
    }

    .even .project-details {
        flex-direction: column;
        align-items: center;
    }

    .project .proj-img  {
        width: 100%;
        margin: 0 0 20px 0;
    }

    h1{
        font-size: 1.2em;
    }
    .project h3{
        font-size: 1em;
    }

    .project .description {
        width: 100%;
        font-size: 0.8em;
    }

}
