/* 
  Author: Connor Kippes

  CSS for the detailed view of a painting.
*/

#painting-container {
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
}

#big-painting {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.big-painting-container {
    height: 500px;
    width: 500px;
    overflow: hidden;
}

.big-painting-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mini-painting-container {
    display: inline-block;
    height: 70px;
    width: 70px;
    margin-top: 20px;
    margin-right: 7px;
    overflow: hidden;
    cursor: pointer;
}

.mini-painting-container:hover {
    opacity: 0.75;
    transition: opacity 0.1s ease;
}

.mini-painting-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#heart {
    width: 40px;
    height: 40px;
    fill: rgb(75, 75, 75);
    transition: transform 0.2s ease;
}
