.fund_archive {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.fund_box {
    display: inline-block;
	border: 3px solid transparent;
    border-radius: 8px;
    transition: transform 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55),
                border-color 0.35s ease;
}

.fund_box img {
    display: block;
    width: 100%;
    height: auto;
}

.fund_box:hover {
    transform: translateY(-16px);
}

.fund_box:hover img {
    filter:
        drop-shadow(2px 0 0 #c99a2e)
        drop-shadow(-2px 0 0 #c99a2e)
        drop-shadow(0 2px 0 #c99a2e)
        drop-shadow(0 -2px 0 #c99a2e);
}
