@import "/src/styles/style.css";

.projectsContainer {
    margin: auto 0;

    display: flex;
    flex-direction: column;
}

.project {
    display: flex;
    align-items: center;
    border: 1px solid var(--text-clr);
    border-radius: 0.5rem;

    padding: 2rem;
    gap: 2rem;
    margin-bottom: 1rem;

    transition: transform 200ms;

    background-color: var(--background-clr-shade);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.137);
}

.project:hover {
    transform: scale(1.02);
}

.project > img {
    max-width: 500px;
    border: 1px solid var(--text-clr);
    border-radius: 0.5rem;
}

@media (max-width: 1000px) {
    .project {
        flex-direction: column;
    }
}

@media (max-width: 650px) {
    .project > img {
        max-width: 100%;
    }
}

