* {
    margin: 0;
    padding: 0;
    box-sizing:border-box;
    font-family: 'Recursive', sans-serif;
    color: #fff;
  }

  .header {
    display:flex;
    justify-content:flex-start;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:4rem;
    border-bottom:0.15rem solid #fff;
    font-family: 'Recursive', sans-serif;

  }
  .header h1 {
    font-size: 1.61803398875rem;
    color: #fff;
    margin-right:auto;
    margin-left: 2.4rem;
    margin-top: 1.3rem;
  }
  .header a {
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    margin-right: 1rem;
    margin-top: 0.5rem;

  }



  body {
    width: 100%;
    height: 100vh;
    background-color: #111111; /* neutral base */
    background-image: radial-gradient(#2b2b2b 2px, transparent 1px);
    background-size: 8px 8px; /* tweak spacing */
    
    
  }
  

  .nameCard {
    height: 50vh;

    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;

  }
    
  .nameCard .bigname { /* make so the lettering itself has to be clicked - not the entire card */
    font-size: 9rem;
    white-space: nowrap;
    text-decoration: none;
    margin-top:4rem;
  }

  .nameCard p {
    padding-top: 2rem;
    font-size: 2rem;
    text-align: center;
  }



  
  
  .container {
    height: 40vh;
    display:flex;
    justify-content:center;
    align-items:center;

    width: 70%;
    flex-direction:row;

    margin: 0 auto;

    
  }

  .container img { /* CHANGE TO .container .a */
    width: 20%;
    height: 60%;
    object-fit:cover;
    
    -webkit-box-reflect:below 0.2rem linear-gradient(transparent, transparent, #0004);
    
    transform-origin:center;
    transform:perspective(50rem) rotateY(25deg);
    transition:0.5s;

  }

  .container img:hover  { /* rihgt now, only opaque one image, not ALL THREE -> APPLY TO ALL*/
    opacity:0.3;
  }

  .container img:hover {
    transform:perspective(800px)       rotateY(0deg);
    opacity:1;
  }



  .card {
    position: relative;
    height: 20rem;
    width: 10rem;
    margin: 1.5rem;
    cursor: pointer;
  }

  .card .imgBx {
    height: 100%;
    width: 100%;
  }

  .card img {
    position: absolute;
    height: 15rem;
    width: 10rem;
    top: 3rem;
    left: 0rem;
    background-color: #fff;
  }

  .card p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none; /* allows clicks to pass through to image */
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* makes text more readable */
  }     






  .footer {
    position:absolute;
    top: 90vh;
    left: 50%;
    transform: translateX(-50%);
  }



