.projects {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3vh;
    background-color: #062023;
}


.project {
    width: 70%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 10px;
    padding: 30px;
    border-radius: 10px;
    background-color: #53B4C0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.project-data {
    max-width: 50%;
    padding-top: 2vh;
    padding-bottom: 2vh;
}

.project-title {
    margin-top: 5px;
    font-size: 1.8em;
    text-align: left;
    font-weight: bold;
    color: #062023;
    margin-bottom: 5px;
}

.project-text {
    font-size: 1.1em;
    color: #062023;
    margin-bottom: 10px;
}

.project > img {
    max-width: 45%;
    height: auto;
}

@media (max-width: 600px) {
    .project {
        width: 90%;
        flex-direction: column;
    }
    .project-data {
        max-width: 95%;
    }
    .project > img {
        margin-top: 30px;
        max-width: 90%;
        height: auto;
    }
}