body {
    font-family: 'Montserrat', sans-serif;
}

header {
    width: 100%;
}

.img-thumbnail:hover {
    opacity: 0.8;
    transform: scale(1.1); 
}

.navbar-toggler .fas {
    color: #ffffff; /* Beyaz renk */
}

.pageheader{
    background-color: #143a63;
    color: #fff;
    width: 100%;
    border-radius: 0 0 20px 20px; 
}

.proje{
    min-height: 4em; 
    max-height: 4em; /* Metni en fazla 6 satır yüksekliğe kadar göster */
    overflow: hidden; /* Taşan içeriği gizle */
    text-overflow: ellipsis; /* Taşan içeriği üç nokta (...) ile göster */
    white-space: normal; /* İçeriği normal satır atlamasıyla göster */
    line-height: 1.2em; /* Satır yüksekliği ayarı */
}

.gallery-caption {
    text-align: center;
    margin-top: 10px;
}

.gallery-img img {
    transition: transform 0.2s;
}
.gallery-img img:hover {
    transform: scale(1.1);
}
