  /* Reset some default styles */
  body, html {
    font-family: 'sf_pro_displaylight';
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden; /* Hide scrollbars caused by the video */
  }
  
  /* Fullscreen video container */
  .fullscreen-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  /* Set video to fill container */
  .fullscreen-bg video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
  }
  
  /* Text container */
  .fullscreen-bg .overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 9;
    max-width: 480px;
    width: 100%;
    padding: 0 15px;
  }
  
  /* Text styles */
  .fullscreen-bg h1 {
    font-size: 5rem;
    font-weight: 700;
    font-family: 'sf_pro_displaybold';
    margin-bottom: 40px;
  }
  
  .fullscreen-bg p {
    font-size: 1.2rem;
    margin: 0 0 20px 0;
    color: #adadad;
    font-family: 'sf_pro_displaylight';
  }
  .fullscreen-bg p span {
    color: #fff;
  }
  .tech-title {
    font-size: 1.5rem;
    color: #fff;
    font-family: 'sf_pro_displaymedium';
    font-weight: 300;
  }
  .mid-text {
    margin-top: 40px;
  }
  .social-links {
    display: flex;
    justify-content: center;
  }
  .social-links a {
    margin-right: 10px;
  }
  .social-links img {
    width: 34px;
    height: 34px;
  }
  .social-links a.email img {
    height: 26px;
  }
  @media (max-width: 768px) {
    .overlay-text h1 {
      font-size: 3rem;
    }

  }

