.navbar-brand img {max-height: 7rem !important}/* Add custom CSS styles below */ 
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: #fff url("https://i.postimg.cc/d0T85gLx/logo-7-1.png") no-repeat center center;
  background-size: 160px;
  z-index: 999999;
  animation: fadeOut 1s ease forwards;
  animation-delay: 2s; /* يختفي بعد ثانيتين */
}

@keyframes fadeOut {
  to { opacity: 0; visibility: hidden; }
}