@font-face {
    font-family:'ISF' ;
    src: url(../fonts/SourceSansPro-Light.otf);
}

@font-face {
    font-family: 'ISF It';
    src: url(../fonts/SourceSansPro-LightIt.otf);
}


@font-face {
    font-family: 'ISF bold';
    src: url(../fonts/SourceSansPro-Semibold.otf);
}
@font-face {
    font-family: 'ISF boldIt';
    src: url(../fonts/SourceSansPro-SemiboldIt.otf);
}



/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'ISF';
 
   
    
}
/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    width: 100vw;
}


/* Global Styles */
body {
    animation: fadeIn 1s ease-in;
    width: 100%;
    height: 600vh;
    overflow: scroll;

    
}

.center{
    display: flex;
    justify-content: center;
}



h1 {
    font-size: 46px;
  }







img.Navlogo{
    position: absolute;
    z-index: 3;
    top: 65px;
    width: 280px;
    transition: transform 3s ease;
}

.nav{
    width: 100%;
    border-bottom: 10px solid white;
    height: 200px;
}

img.Navlogo:hover{
    transform: scale(1.3);
    
}


#loading-screen {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000; /* אפשר לשים גרדיאנט, או אנימציית רקע */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Wallpoet', sans-serif;
    font-size: 32px;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    background-image: url("../img/background.png") ;
  }
  
  #loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
  }
  