@import "../../style/global.css";
#art-work-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 1rem;
    align-items: baseline;
    width: 100%;
}

.art-work {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    margin: auto;
}

img {
    width: 75%;
    margin-bottom: 1rem;
}

img:hover {
    transform: scale(1.5);
}

p {
    text-align: left;
}

p:hover {
    color: var(--hover-text-color);
}

span {
    font-weight: bold;
}