body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: Arial, sans-serif;
  }
  
  #bg-video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  
  .overlay {
    position: relative;
    height: 100vh;
    width: 100%;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.7);
    z-index: 1;
  }

  .project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin: 1rem;
  }

  .pjts {
    background-color: var(--white);
    padding: 1rem;
    border: .2px solid black;
    border-radius: 19%;
    text-align: center;
    font-weight: bold;
    box-shadow: 8px 8px 2px 2px rgba(2, 0, 0, 0.218);
  }

  h1 {
    text-align: center;
  }

  #home-icon {
    margin: .5rem;
  }
  
  footer {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: max-content;
    z-index: 2;
  }
  
  .copyright {
    margin: 0;
    font-size: 1rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
  }
  