@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&display=swap");


.project_card {
    min-width: 80px;
    padding: 80px;
    position: relative;
    width: 220px;
    height: 320px;
    background: rgb(0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: aliceblue;
    font-size: 25px;
    font-weight: bold;
    border-radius: 15px;
    cursor: pointer;
  }

  .project_card-container {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
  }
  

  .project_card::before,
  .project_card::after {
    position: absolute;
    content: "";
    width: 20%;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: bold;
    background-color: rgb(126, 31, 204);
    transition: all 0.5s;
  }
  
  .project_card::before {
    top: 0;
    right: 0;
    border-radius: 0 15px 0 100%;
  }
  
  .project_card::after {
    bottom: 0;
    left: 0;
    border-radius: 0 100%  0 15px;
  }
  
  .project_card:hover::before,
  .project_card:hover:after {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    transition: all 0.5s;
  }
  
  .project_card:hover:after {
    content: "See Project";
  }


  @media (max-width: 768px) {
  .project_card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
