.favorite-empty-container {
    display: flex;
    flex-flow: column;
    align-items: center;
    margin-top: 5%;
    a {
        margin-top: 1rem;
        background-color: #d71921;
        color: #ffffff;
        border-radius: 8px;
        padding: 10px 25px;
        text-decoration: none;
        transition: background-color 300ms ease, box-shadow 300ms ease, transform 300ms ease;
    }
    a:hover {
        background-color: #b8141b;
        color: #ffffff;
        box-shadow: 0 6px 20px rgba(215, 25, 33, 0.4);
        transform: translateY(-2px);
    }
    img {
        max-width: 700px;
        width: 100%;
    }
}
