
  .view-button {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    
    color: white;
    border: 1px solid white;
    border-radius: 5px;
    background-color: transparent;
    transition: background-color 0.3s, color 0.3s;
    margin: 10px;
    /* font-family: Georgia, 'Times New Roman', Times, Serif; */
    font-family: 'Space Grotesk', sans-serif;
    
    font-size: 1rem;
    text-align: center;
  }
  
  .view-button:hover {
    background-color: white;
    color: black;
  }

  
  
  
  .social-buttons {
    text-align: center;
    position: fixed;
    bottom: 20px; /* Adjust the distance from the bottom as needed */
    left: 0;
    right: 0;
  }
  
  .social-button {
    display: inline-block;
    margin: 10px;
    padding: 8px 8px;
    text-decoration: none;
    color: white;
    border: 1px solid white;
    border-radius: 5px;
    background-color: transparent;
    /* font-family: Georgia, 'Times New Roman', Times, Serif; */
    
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
  }
  
  .social-button:hover {
    background-color: white;
    color: black;
  }
  
  /*-----------------------------------*\
   * #FOOTER
  \*-----------------------------------*/
  
  .footer {
    /* background: var(--bg-secondary); */
    padding-block: 30px;
    text-align: center;
    box-shadow: var(--shadow-1);
  }
  
  .footer .logo { margin-bottom: 15px; }
  

 
  
  
  
  
    /*navbar 
  .navbar{
    display: flex;
    justify-content: center;
    height: 50px;
    align-items: center;
    position: sticky;
    top: 0;
  
  }
  
  .navbar::before{
    content: "";
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
    z-index: -1; 
  }
  
  .navbar ul{
    display: flex;
    list-style: none;
  }
  
  .navbar ul li { 
    font-size: 1.1rem; 
  
  }
  
  .navbar ul li a{ 
    padding: 5px 20px;
    text-decoration: none;
    color: white;
  }
  
  .navbar ul li a:hover{
    border-bottom: 2px solid white;
  
  }
  
  */
  
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: center;
    height: 50px;
    align-items: center;
    position: sticky; /* Change to fixed to keep it at the top */
    top: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Add background color for the navbar */
    width: 100%;
    z-index: 1000; /* Ensure it's on top of other content */
    font-weight: normal;
  }
  
  .navbar ul {
    display: flex;
    list-style: none;
    font-weight: normal;
  }
  
  .navbar ul li {
    font-size: 1.1rem;
    font-weight: normal;
  }
  
  .navbar ul li a {
    padding: 5px 20px;
    text-decoration: none;
    color: white;
    font-weight: normal;
  }
  
  .navbar ul li a:hover {
    border-bottom: 2px solid white;
    font-weight: normal;
  }
  
  #portfolio{
    display: flex;
    flex-direction: column;
    background-color: #000000;
    font-weight: normal;
  }
  
  
  #video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
  }
  
  
  

  html {
    font-family: 'Space Grotesk', sans-serif;
    scroll-behavior: smooth;
    background-color: #000000;
  }
  
  
  
  
  