@font-face {
    font-family: 'CustomFont'; /* Name your font family */
    src: url('SUSE-ExtraBold.ttf'); /* Locate the .ttf file within your directory*/
  }
  @font-face {
    font-family:'bridge'; /* Name your font family */
    src: url('DelaGothicOne-Regular.ttf'); /* Locate the .ttf file within your directory*/
  }
@font-face {
  font-family: 'booty';
  src: url('/styles/SUSE-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'PermanentMarker';
  src: url('PermanentMarker-Regular.ttf') format('truetype');
}

  /* Container for the top navigation */
  .topnav {
  font-family: 'CustomFont', sans-serif; /* Use the font family */
  display: flex;
  justify-content: space-between; /* Space between logo and links */
  align-items: center; /* Align logo and links vertically */
  background-color: rgb(31, 31, 39);
  padding: 14px 20px;
  z-index: 1;
  width: 100%;
  position: fixed; /* Make it stay on top when scrolling */
  top: 0;
  left: 0;
  z-index: 1;
  }
  
  .logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    flex: 1;
    color: #ccc;
    font-family: "booty";
  }
  
  /* Style the logo image */
  .site-logo {
    width: 40px; /* Adjust size of the logo */
    height: 40px; /* Ensure it has a fixed height */
    margin-right: 10px; /* Add space between the logo and the text */
  }
  
  /* Links on the right */
  .nav-links {
  display: flex; /* Align links horizontally */
  margin-left: fixed; /* Push the links to the right */
  margin-right: 25px;
  }
  
  /* Style the links */
  .nav-links a {
  padding: 14px 25px;
  text-decoration: none;
  font-size: 15px;
  color: #d0d0d8;
  font-family: "booty";
  }
  
  /* Change color on hover */
  .nav-links a:hover {
  /*background-color: rgba(255, 255, 255, 0.3); /* Background color on hover */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  /*color: #242230;*/
  }
  
  /* Active link style */
  .nav-links a.active {
  background-color: rgba(131, 124, 194, 0.6); /* Active link background */
  color: rgb(234, 233, 247);
  border-radius: 15px;
  }
  .video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1; /* Behind everything */
  }
  
  #bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure video covers the container */
  }
  .glass-container {
  position:absolute;
  margin-top: 400px;
   /* Starts just below the navigation bar (adjust based on your nav bar height) */
  left: 0;
  right: 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1); /* Transparent white background */
  backdrop-filter: blur(15px); /* Blurs the background behind it */
  box-shadow: 0 8px 32px rgba(219, 212, 212, 0.37); /* Gives it depth with shadow */
  color: white; /* Text color contrast against the background */
  margin: 0; /* No margin */
  width: 97,5%; /* Full width */
  height: 86,5%; /* Full height minus the height of the nav bar */
  z-index: 0; /* Ensure it stays behind the nav bar */
  }
  /* Container for the scrolling text with glass effect */
  .glass-scrolling-text-container {
  position: fixed; /* Fixed position at the bottom of the viewport */
  bottom: 0; /* Aligns the container to the bottom */
  left: 0; /* Aligns the container to the left edge */
  width: 100%; /* Full width of the viewport */
  height: 50px; /* Adjust based on your design */
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white background */
  backdrop-filter: blur(10px); /* Blurs the background behind it */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow for depth */
  overflow: hidden; /* Hide overflow to keep the text bar clean */
  z-index: 1000; /* Ensure the bar is above other content */
  display: flex; /* Center contents horizontally */
  align-items: center; /* Vertically center text */
  }
  
  /* Container for the scrolling text */
  .scrolling-text-wrapper {
  display: flex; /* Display text in a row */
  white-space: nowrap; /* Prevent text from wrapping */
  overflow: hidden; /* Hide text overflow */
  width: 200%; /* Ensure there's enough space for scrolling effect */
  position: relative; /* Position relative to container */
  }
  
  /* Scrolling text */
  .scrolling-text {
  display: inline-block; /* Ensure the text wraps properly */
  white-space: nowrap; /* Ensure text stays on one line */
  animation: scroll-text 360s linear infinite; /* Continuous scrolling animation */
  }
  
  /* Styling for the text */
  .scrolling-text p {
  margin: 0; /* Remove default margins */
  padding: 0 0rem; /* Add some padding for spacing */
  font-size: 30px; /* Adjust font size as needed */
  font-family: "PermanentMarker";
  color: #939ebd; /* Text color */
  display: inline; /* Display inline to ensure continuous flow */
  }
  
  /* Keyframes for scrolling text effect */
  @keyframes scroll-text {
  100% {
      transform: translateX(-100%); /* Start position off-screen to the right */
  }
  1000% {
      transform: translateX(100%); /* End position off-screen to the left */
  }
  }
  