@font-face {
    font-family: 'Montserrat';
    src: url('assets/Fonts/Montserrat-Black.ttf') format('ttf');
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat';
    src: url('assets/Fonts/Montserrat-ExtraBold.ttf') format('ttf');
    font-weight: 800;
    font-style: normal;
}

.NavigationBar {
  background-color: #00000000;
  position: relative;
  top: 30px;
  z-index: 1000;
  height: 60px;
  width: 100%;
}

.Navigation-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 120px;
  font-size: 36px;
  margin: 0;
  padding: 0;
}

.Navigation-links li a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-weight: bold;
  display: inline-block; 
  transition: color 0.3s, transform 0.3s ease;
}

.Navigation-links li a:hover {
  transform: translateY(-10px);
  color: #fff;
}

body {
    background-color: rgba(10, 10, 10, 0.952);
    color: white;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    box-shadow: inset 0 0 16px 8px #000000;
    border: 1px solid #000000; 
        background-image: url('/assets/HomepageLoop.png');
    background-repeat: repeat-y;
    background-size: 100% auto;
    background-position: top center;
    box-sizing: border-box;
    width: 100%;
    min-height: 100vh;
    animation: scrollBackground 80s linear infinite;
}

.ProfileImage {
    width: 400px;
    height: 400px;
    border: 15px solid #000000;
    border-radius: 50%;
    box-shadow: -5px 5px 5px 4px #FF0000;
    object-fit: cover;
    
}

@keyframes scrollBackground {
  0% {
    background-position: center bottom;
  }
  100% {
    background-position: center top;
  }
}