@font-face {
  font-family: 'Faruma';
  src: url('Faruma.ttf') format('truetype');
}

body {
  font-family:   Arial, 'Faruma', sans-serif;;
  margin: 0;
  background-color: #b6b6b6;
  color: #eaeaea;
}
.top-bar {
  position: sticky;
  top: 0;
  height: 60px;
  margin: 15px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;

  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);

  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: 0 5px 0px rgba(25, 240, 255, 0.6);
  transform: translateY(-120%);
  opacity: 0;
  animation: slideDown 0.4s ease-out forwards;

  z-index: 1000;
}
.logo {
  height: 32px;
  width: auto;
}
.wvingslogo {
  height: 50px;
  width: auto;
}
@keyframes slideDown {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.brand {
display: flex;
  align-items: center;
  gap: 20px; 
} 
#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  border: 8px solid #ffffff;
  border-top: 8px solid #000000;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@media (max-width: 768px) {
.tabbuttons {
    gap: 10px;
  }

.tabbuttons a {
    font-size: 13px;
    padding: 6px 10px;
  }
}
.tabbuttons {
  display: flex;
  gap: 20px;
  margin-left: auto;
}
.tabbuttons a {
  color: #eaeaea;
  text-decoration: none;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.3s ease, color 0.3s ease;
}

.tabbuttons a:hover {
  outline: 1px solid rgba(255, 255, 255, 0.4);
  outline-offset: -1px;
}
h1{
  color: rgb(0, 0, 0);
  font-size: 3em;
}
h2{
  color: rgb(0, 0, 0)
}
h4{
  font-weight: unset;
}
  #content {
  margin: 20px;
  font-size: 1.2em;
}

#content h3 {
  font-size: 2em;
  color: #000000;
}

#content h4 {
  color: #000000;
}
#content {
  padding: 20px;
}
#footer {
  background-color: #000;
  color: rgb(255, 255, 255);
  padding: 20px;
  text-align: center;
  border-top: 8px solid;
  border-image: linear-gradient(to right, rgb(0, 204, 5), white, rgb(183, 43, 42)) 1;
}