﻿body::before {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    width: 500px; /* Filigran genişliği */
    height: 500px; /* Filigran yüksekliği */
    transform: translate(-50%, -50%); /* Açı yok */
    background-image: url('../img/kirbaclogo1.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.10; /* Şeffaflık */
    pointer-events: none; /* Tıklamaları engellemesin */
    z-index: 0;
}

body {
    position: relative;
    z-index: 1;
}
