/* WORK -------------------------------*/

.work {
    max-width: 1000px;
    width: 100%;
    margin: auto;
    display: grid;
    gap: 4rem;
    grid-template-columns: repeat(3, 1fr);
    place-items: center;
}

.work-bottom {
    margin-bottom: 12.5rem;
}

.img-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 300px;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.img-container img {
    display: block;
    margin: 0 auto;
    max-width: 80%;
    max-height: 80%;
    width: auto;
    height: auto;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.img-container:hover {
    transform: scale(1.1);
}

.work-last {
    margin-bottom: 9rem;
}

.illustration-h2 {
    margin-bottom: 2rem;
}