@font-face {
    font-family: 'MyFont';
    src: url('fonts/my-font-regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

* {
    font-family: 'MyFont', Arial, sans-serif;
}

.custom-divider {
    height: 3px;
    background: #2d3250;
    width: 50%;
    opacity: 0.8;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.text-justify {
    text-align: justify;
}

.project-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.project-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #646687;
    color: #fff;
    padding: 0.75rem;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.project-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.project-card {
    min-height: 320px;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-img {
    height: 200px;
    object-fit: cover;
}

.project-title {
    padding: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fef7e7;
}

a.text-decoration-none:hover .project-title {
    text-decoration: underline;
}