/* project-styles.css */

body {
    background-color: #f5f5f5;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
}

.project-content h1 {
    font-size: 2.5em;
    color: #333;
}

.project-content h2 {
    font-size: 1.5em;
    color: #333;
    margin-top: 1em;     /* Keep the top margin the same */
    margin-bottom: 0.5em;
}

.project-content p {
    font-size: 1em;
    color: #333;
    margin-top: 0em;     /* Keep the top margin the same */
    margin-bottom: 1em;

}

.content-wrapper {
    display: flex;
    /*flex-wrap: wrap;*/
    align-items: flex-start;
}

.text-container {
    flex: 1;
    max-width: calc(100% - 170px);
}

.images-container {
    display: flex;
    flex-direction: column;
    gap: 105px;
    margin-left: 100px;
    margin-right: 200px;
    flex-shrink: 0;
}

.project-image {
    max-width: 250px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.back-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 15px;
    background-color: #2441ff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.back-button:hover {
    background-color: #1a34cc;
    transform: scale(1.05);
}
