@import 'theme.css';

* {
    font-family:figtree ;
}

.heading {
    font-size: 2.5rem;
    font-weight: 600;
    /*font-family: Verdana, Geneva, Tahoma, sans-serif;*/
    text-decoration: underline;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.heading-secondary {
    font-size: 1.8rem;
    font-weight: 600;
    /*font-family: Verdana, Geneva, Tahoma, sans-serif;*/
    margin-bottom: 20px;
    color: var(--primary-color);
}

.card-overlay {
    position: relative;
    overflow: hidden;
}

.card-overlay-strip {
    width: 145%;
    height: 40px;
    /* background: rgba(255, 255, 255, 0.1); */
    background: linear-gradient(rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0.3) 80%);
    /* background: #a66b6b; */
    transform: rotate(-80deg);
    top: 41%;
    left: -95%;
    transition: .5s;
}

.card-overlay:hover .card-overlay-strip {
    left: 47% !important;
    opacity: 0.2;
}
.card-body img {
    height: 100px;
    width: 110px;
    border-radius: 10px;
    object-fit: fill;
}