@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body { font-family: Poppins; }
.card-hover { transition: transform 0.3s ease; }
.card-hover:hover { transform: translateY(-10px); }

@keyframes bgbg {
    0% { opacity: 0; display: flex; }
    20%, 80% { opacity: 1; }
    100% {
        opacity: 0;
        display: none;
    }
}
.fanny {
    mix-blend-mode: screen;
    position: relative;
    right: 0;
    bottom: 0;
    height: 270px;
    opacity: 1;
    filter: brightness(1) contrast(1.5) saturate(1.8);
    object-fit: cover;
}

.bgbg {
    background: transparent;
    backdrop-filter: blur(50px);
    z-index: 19;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    display: none;
    justify-content: center;
    align-items: center;
    animation: bgbg 3.1s ease;
}

.bgfny {
    background: black;
    position: fixed;
    right: 0;
    bottom: 0;
    overflow: hidden;
    display: none;
    width: 0px;
    height: 0px;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 10px;
    box-shadow: -15px 0 0 white;
    z-index: 9999;
    animation: bgfny 3.1s ease;
}
@keyframes bgfny {
    0% {
        width: 0px;
        height: 0px;
        opacity: 0;
    }
    20%, 80% {
        width: 300px;
        height: 270px;
        opacity: 1;
    }

    100% {
        opacity: 0;
        display: none;
        width: 300px;
        height: 270px
    }
}