body {
    font-family: "Passion One", cursive;
    font-family: "Poppins", sans-serif;
    /* display: flex;
    flex-direction: column; */
    /* min-height: 100vh; */
}

/* footer {
    margin-top: auto;
} */

.img-profile {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
}

.img-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dot {
    content: "";
    height: 4px;
    width: 4px;
    background: rgba(0, 0, 0, 0.89);
    border-radius: 100%;
}

.card-description {
    height: 2.5em; /* Adjust this value to set the desired fixed height default 3.8em */
    overflow: hidden; /* Hide overflowing content */
}

@keyframes slide-down-from-top {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-slide-down-from-top {
    animation: slide-down-from-top 0.3s ease-out;
}
