/* -------------------------------------- body */
body {
    background: #dfeef4;
}

/* -------------------------------------- container */
.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 70px;
}

/* -------------------------------------- shrine */
.shrine-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: white;
    border: 1px solid;
    border-radius: 5px;
    cursor: pointer;
}

.shrine-h3 {
    display: flex;
    width: -webkit-fill-available;
    font-family: georgia;
    font-weight: lighter;
    font-style: italic;
    font-size: 15px;
    justify-content: space-between;
    align-items: center;
    letter-spacing: 2px;
    transition: 0.3s;
    transition-timing-function: ease-in-out;
}

.shrine-link {
    text-decoration: none;
}

.shrine-img {
    display: flex;
    border-radius: 3px;
    height: 210px;
    width: 210px;
    background-size: cover !important;
    background-position: center !important;
    border: 1px solid;
    border-image-source: url(/graphics/0_sweet-pea/border_1.gif);
    border-image-repeat: round;
    border-image-slice: 5;
    border-image-width: 5px;
    align-items: center;
    justify-content: center;
}

.shrine-link:hover {
    .shrine-h2 {
        opacity: 100%;
    }
}

.shrine-h2 {
    font-family: georgia;
    font-weight: lighter;
    font-style: italic;
    font-size: 40px;
    opacity: 0%;
    transition: 0.3s;
}