.project-section-outer {
    margin: 5rem 2rem;
    border-style: solid;
    border-width: 0.8rem 1.2rem 1.2rem 0;
    border-color: rgba(182, 71, 163, 0.8) rgba(182, 71, 163, 0.8) rgba(118, 71, 173, 0.8) transparent;
    border-top-right-radius: 4rem;
    border-bottom-right-radius: 4rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    max-width: 600px;
  }

  .project-section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.5rem;
    background:
      repeating-linear-gradient(
        to bottom,
        rgba(151, 150, 150, 0.185),
        rgba(0, 0, 0, 0.05) 3px,
        transparent 3px,
        transparent 20px
      ),
      repeating-linear-gradient(
        to right,
        rgba(151, 150, 150, 0.185),
        rgba(0, 0, 0, 0.05) 3px,
        transparent 3px,
        transparent 20px
      );
    border-style: solid;
    border-width: 0.8rem 1.2rem 1.2rem 0;
    border-color: rgba(23, 74, 72, 0.8) rgba(23, 74, 72, 0.8) rgba(213, 175, 75, 0.8) transparent;
    border-top-right-radius: 2.5rem;
    border-bottom-right-radius: 2.5rem;
  }
  

  .project-section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #9c9a97;
  }
  
  .project-section-social {
    display: flex;
    gap: 1.5rem;
    justify-content: left;
  }
  
  .social-symbol {
    font-size: 3.2rem;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
  }
  
  .social-symbol:hover {
    transform: scale(1.3);
    opacity: 0.8;
  }

  @media (min-width: 768px) {
    .project-section-outer {
      margin-right: 4rem;
    }

    .project-section-inner {
      padding-top: 1.5rem;
      padding-bottom: 1.5rem;
    }

    .project-section-title {
      font-size: 2.5rem;
    }
  }

  @media (min-width: 768px) {
    .project-section-social {
      gap: 2rem;
    }
  
    .social-symbol {
      font-size: 3.6rem;
    }
  }
  
  @media (min-width: 1024px) {
    .project-section-social {
      gap: 2.5rem;
    }
  
    .social-symbol {
      font-size: 3.8rem;
    }
  }