@font-face {
  font-family: 'Noto Sans Hebrew';
  src: url(fonts/Noto.ttf) format('truetype');
  font-weight: 100 900; /* Supports all weights if using variable font */
}

body {
  margin: 0;
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-weight: 300;
  background-color: snow;
} 

a {
    text-decoration: none !important;
}

.logo {
    display: flex;
    flex-grow: 1;
    align-content: center;
    font-family: 'Courier New', Courier, monospace;
} 

header {
    grid-area: header;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    min-height: 40px;
    margin-top: 0;
    background-color: #000;
    border-bottom: 1px solid #e0e0e0; 
    background-color: rgba(255, 255, 255, 0.7); 
    backdrop-filter: blur(8px);                 
    -webkit-backdrop-filter: blur(8px);        
}

.logo {
    display: flex;
    flex-grow: 1;
    margin-left: 10px;
    align-content: center;
    font-family: 'Courier New', Courier, monospace;
} 

#nav-bar {
    display: flex;
    flex-grow: 1;
    justify-content: flex-end;
    align-content: center;
    flex-direction: row;

}

.nav-item {
    display: flex;
    justify-content: center;
    min-width: 50px;
    margin: 0 20px 0;
    padding: 5px;
    border-radius: 10px;
    font-size: x-large;
    transition: all 0.3s ease;
}

.nav-item:hover {
    box-shadow: 0 2px 1px;
    transform: translateY(-2px);
    cursor: pointer;
}

.nav-item:active {
 transform: translateY(0);
}

footer {
    
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 30px;
    background-color: rgb(31, 31, 31);
    color: azure;
    font-family: "cursive";

}