body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e1dede; 
}

.header-text {
    margin: 0;
    font-size: 24px;
    color: #212121;
    text-align: center;
}

.page-container {
    width: 80%; 
    max-width: 1000px; 
    min-height: auto; 
    background-color: #e1dede; 
    position: relative; 
}

.top-left-text {
    position: absolute; 
    top: 10px;
    left: 10px;
    font-size: 16px;
    color: #212121;
}

.content {
    text-align: left; 
    color: #212121;
    padding: 20px;
}

.project-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 20px 0;
    padding: 20px;
    background-color: #e1dede;
}
    .project-section.reverse {
        flex-direction: row-reverse; /* Reverses the layout */
        text-align:right;
    }

.project-description {
    flex: 1;
    margin-right: 20px;
}

    .project-description h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .project-description h2 a {
        text-decoration: none; 
        color: inherit; 
        cursor: pointer; 
    }

    .project-description h2 a:hover{
        color:#5e5e5e
    }

    .project-description p {
        font-size: 16px;
        line-height: 1.5;
    }

.project-image {
    flex: 1;
    max-width: 300px;
    max-height: 200px;
    overflow: hidden;
    text-align: center;
}

.project-image img {
        width: 100%;
        height: auto;
        border-radius: 8px;
}

