    :root {
      --primary-color: #fff;
      --secondary-color: #fff;
      --background-dark: #161616;
      --text-color: #e3e3e3;
      --terminal-font: 'Courier New', Courier, monospace;
    }

    body {
      background-color: var(--background-dark);
      color: var(--text-color);
      font-family: var(--terminal-font);
      line-height: 1.6;
      margin: 0;
      padding: 0;
      min-height: 100vh;
    }

    nav {
      background-color: rgba(0, 0, 0, 0.9);
      border-bottom: 2px solid var(--primary-color);
      padding: 1.5rem 0;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
    }

    button {
      background-color: rgba(52, 52, 52, 0.9);
      color: var(--primary-color);
      font-family: var(--terminal-font);
      font-size: 1rem;
      padding: 0.75rem 1.5rem;
      border: none;
      border-radius: 0.25rem;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      margin-top: 2px;
    }

    img {
      max-width: 400px;
      border: 1px solid #ccc;
      border-radius: 2px;
    }

    video {
      width: 100%;
      max-height: 90vh;
      align-self: center;

    }

    button::before,
    button::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(255, 255, 255, 0.2);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    button::before {
      transform: translateX(-100%);
    }

    button::after {
      transform: translateX(100%);
    }

    button:hover {
      background-color: var(--secondary-color);
      color: var(--background-dark);
      box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    }

    button:hover::before,
    button:hover::after {
      opacity: 1;
    }

    button:hover::before {
      transform: translateX(0);
    }

    button:hover::after {
      transform: translateX(0);
    }

    .nav-container {
      max-width: 64rem;
      margin: 0 auto;
      padding: 0 1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo h1 {
      color: var(--primary-color);
      font-size: 1.5rem;
      margin: 0;
      text-transform: uppercase;
      letter-spacing: 2px;
    }


    .nav-links {
      display: flex;
      gap: 2rem;
    }

    .nav-links a {
      color: var(--primary-color);
      text-decoration: none;
      font-size: 1.1rem;
      position: relative;
      padding: 0.25rem 0.75rem;
      transition: all 0.3s ease;
    }

    .nav-links a::before {
      content: "[";
      margin-right: 0.25rem;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .nav-links a::after {
      content: "]";
      margin-left: 0.25rem;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .nav-links a:hover::before,
    .nav-links a:hover::after {
      opacity: 1;
    }

    .nav-links a:hover {
      text-shadow: 0 0 8px var(--primary-color);
    }

    a {
      color: var(--primary-color);
      text-decoration: none;
      /* font-size: 1.1rem; */
      position: relative;
      transition: all 0.3s ease;
    }

    a::before {
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    a::after {
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    a:hover::before,
    a:hover::after {
      opacity: 1;
    }

    a:hover {
      text-shadow: 0 0 8px var(--primary-color);
    }

    main {
      max-width: 64rem;
      margin: 7rem auto 2rem;
      padding: 0 1rem;
    }

    .content-panel {
      background-color: rgba(0, 0, 0, 0.8);
      border: 1px solid var(--primary-color);
      padding: 2rem;
      margin-top: 2rem;
    }

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

    .project-card {
      background-color: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--primary-color);
      padding: 1.5rem;
      transition: all 0.3s ease;
      display: flex;
      flex: 1;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
    }

    .project-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    }

    .project-card h3 {
      color: var(--primary-color);
      margin: 0 0 1rem 0;
    }



    @media (max-width: 768px) {
      .nav-container {
        flex-direction: column;
        gap: 1rem;
      }

      .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
      }

      main {
        margin-top: 10rem;
      }
    }

    .modal {
      display: flex;
      position: fixed;
      z-index: 1;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0, 0, 0, 0.5);
    }

    .modal-content {
      background-color: var(--background-dark);
      margin: 15% auto;
      padding: 20px;
      border: 1px solid #888;
      width: 80%;
      display: flex;
      flex: 1;
      flex-direction: column;
      align-items: baseline;

    }

    .modal-body {
      /* display: flex; */
      /* flex: 1; */
      /* justify-items: space-between; */
    }

    .close {
      color: #aaa;
      float: right;

      font-size: 21px;
      font-weight: bold;
    }

    .close:hover,
    .close:focus {
      color: var(--secondary-color);
      text-decoration: none;
      cursor: pointer;
    }
