@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /*background: #333;
    /*background: linear-gradient(45deg,#fbda61,#ff5acd);*/
    background-image: url(/image/bgrad.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
}



.card{
    position: relative;
    width: 350px;
    height: 190px;
    background: #333;
    border-radius: 20px;
    /*box-shadow: 0 35px 80px rgba(0,0,0,0.15);*/
    transition: 0.5s;
}

.card:hover{
    height: 450px;
}

.card .lines{
    position: absolute;
    inset: 0;
    background: #000;
    overflow: hidden;
}

.card .lines::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 120px;
    background: linear-gradient(transparent,#45f3ff,#45f3ff,#45f3ff,transparent);
    animation: animate 4s linear infinite;
}

@keyframes animate{
    0%
    {
        transform: translate(-50%,-50%) rotate(0deg);
    }
    100%
    {
        transform: translate(-50%,-50%) rotate(360deg);
    }
}

.card .lines::after{
    content: '';
    position: absolute;
    inset: 3px;
    background: #292929;
}

.card .imgbx{
    position: absolute;
    left: 50%;
    top: -50px;
    transform: translate(-50%);
    width: 150px;
    height: 150px;
    background: #000;
    /*border-radius: 20px;*/
    /*box-shadow: 0 15px 50px rgba(0,0,0,0.35);*/
    overflow: hidden;
    transition: 0.5s;
    z-index: 10;
}

.card:hover .imgbx{
    width: 250px;
    height: 250px;
}

.card .imgbx::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: linear-gradient(transparent,#D060F2,#D060F2,#D060F2,transparent);;
    height: 150px;
    width: 500px;
    animation: animate2 6s linear infinite;
}

@keyframes animate2{
    0%{
        transform: translate(-50%,-50%) rotate(360deg);
    }
    100%{
        transform: translate(-50%,-50%) rotate(0deg);
    }
}

.card .imgbx::after{
    content: '';
    position: absolute;
    inset: 3px;
    background: #292929;
}

.card .imgbx img{
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    filter: grayscale(1);
    /*object-fit: cover;*/
}

.card .content{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}

.card .content .details{
    padding: 40px;
    text-align: center;
    width: 100%;
    transition: 0.5s;
    transform: translateY(145px);
}

.card:hover .content .details{
    transform: translateY(0px);
}

.card .content .details h2{
    font-size: 1.5rem;
    font-weight: 600;
    color: #45f3ff;
    line-height: 1.2rem;
}

.card .content .details h2 span{
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    /*opacity: 0.5;*/
}

.card .content .details .datos{
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.card .content .details .datos h3{
    font-size: 1rem;
    color: #45f3ff;
    line-height: 1.2em;
    font-weight: 600;
}

.card .content .details .datos h3 span{
    font-size: 0.85em;
    font-weight: 400;
    opacity: 0.7;
}

 .actionbtn{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.card .content .details .actionbtn button{
    height: 40px;
    width: 120px;
    border-radius: 5px;
    border: none;
    outline: none;
    font-size: 1em;
    font-weight: 500;
    background: #45f3ff;
    color: #222;
    cursor: pointer;
    opacity: 0.9;
    /*box-shadow: 0 0 40px 40px #45f3ff inset;
    transition: box-shadow 0.2s ease-in-out;
    font-family: 'Nunito';
    display: flex;
    justify-content: space-evenly;
    align-items: center;*/
}


.card .content .details .actionbtn .btn:hover{
    box-shadow: 0 0 10px 0 #00eeff inset, 0 0 8px 2px #00eeff;
    
}


a{
    text-decoration: none;
}

/*.card .content .details .actionbtn button span{
    font-size: 1rem;
    padding-bottom: 1px;
}

.card .content .details .actionbtn button .seguidores{
    padding-bottom: 2px;
}

.card .content .details .actionbtn button .cantidad{
    font-size: 1rem;
    padding-bottom: 2px;
}/*





