/* #favorites .background-grid{
    position: fixed;
    display: grid;
    width: 100vw;
    height: 100vh;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2rem;
    filter: blur(2px);
    padding: 2rem;
    padding-top: 6rem;
}

.background-grid .cell {
    background-color: aliceblue;
    border: 2px solid black;
} */

#favorites .favorites-grid {
    margin-top: 5rem;
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 5%;
    gap: 2%;
}

.favorites-grid .col {
    min-width: 200px;
    flex-basis: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.favorites-grid a {
    width: 100%;
    /* flex-grow: 1; */
    position: relative;
    cursor: pointer;
    border: 3px solid black;
    background-color: aliceblue;
}

.favorites-grid figure {
    padding: .5rem;
}

.favorites-grid figure img {
    width: 100%;
    margin-bottom: none;
    border: 2px solid black;
}

.favorites-grid figure .remove {
    position: absolute;
    top: -2%;
    right: -5%;
    font-family: "Rubik Mono One", monospace;
    color: #f0141e;
    background-color: aliceblue;
    border: 2px solid black;
    transform: scale(0);
    transition: all .2s;
}

.favorites-grid figure:hover .remove {
    transform: scale(1);
}

.favorites-grid figure figcaption {
    font-family: "Rubik Mono One", monospace;
}