.bg-container {
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  
  .bg-container::after {
    content: '';
    background-size: cover;
    filter: blur(5px);
    opacity: 0.5;  
  
    width: 100%;
    height: 100%;
  }
  
  .bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  body {
    backdrop-filter: none; 
  }
  
  header {
    background: #333;
    color: #fff;
    padding: 20px;
    text-align: center;   
  }
  
  h1 {
    margin: 0;
  }
  
  .name {
    font-family: "Maison Neue";
    font-size: 48px;
    display: inline-block;  
  }
  
  .cursor {
    display: inline-block;
    width: 3px;
    margin-left: 5px;
    background-color: #fff;
    animation: blink 1s infinite;
  }
  
  @keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
  }
  