
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Jost", serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a {
    text-decoration: none;
}
.navbar-brand img{
    width: 50px;
}
.nav-link {
    color: white;
}
.nav-link:hover {
    color: #f8f9fa;
}
.navbar-toggler i {
    color: white !important;
}
.banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 220px;
    color: white;
    text-align: center;
}
.portfolio-item {
    position: relative;
    width: 33.333%;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.portfolio-item{
    margin-bottom: 20px;
}
.portfolio-item img {
    width: 100%;
    transition: transform 0.3s ease;
}
.portfolio-item:hover img {
    transform: scale(1.1);
}
.portfolio-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.portfolio-item:hover .overlay {
    opacity: 1;
}
.overlay a {
    color: white;
    font-size: 24px;
    margin: 0 10px;
    text-decoration: none;
}
.filter-btn{
    margin-bottom: 7px;
}
