.friendcardskeleton {
    animation: skeleton-loading 1s linear infinite alternate;
}

@keyframes skeleton-loading {
    0% {
        background-color: rgb(230, 230, 230);
    }
    100% {
        background-color: rgb(245, 245, 245);
    }
}
.friendcardskeleton {
    display: flex;
    flex-direction: column;
    min-width: 245px;
    height: 240px;
    border-radius: 32px;
    background-color: rgb(255, 255, 255);
    align-items: center;
    justify-content: space-evenly;
    box-shadow: rgba(51, 51, 51, 0.25) 0px 3px 6px 0px;
}

@media only screen and (max-width: 500px) {
    .friendcardskeleton {
        min-width: 169px;
        height: 169px;
    }
}

/* DARK MODE */
.dark .friendcardskeleton {
    animation: skeleton-loading-dark 1s linear infinite alternate;
}

@keyframes skeleton-loading-dark {
    0% {
        background-color: rgba(255, 255, 255, 0.1);
    }
    100% {
        background-color: rgba(255, 255, 255, 0.2);
    }
}
