/* projects.css */
h2{
    color: #923b3b;
    display: flex;  
    justify-content: center;  /* Centering items horizontally  */
    align-items: center; /* Centering items vertically */
} 
.theme-button {
    border: 1px solid darkseagreen;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 0.9em;
    background-color: #923b3b;  /* Set the background color of the button */
    color: white;  /* Set the text color of the button */
    border-radius: 5px;  /* Round the corners of the button */
    transition: background-color 0.3s ease;
  }

  /* 🔘 필터 버튼 영역 */
#filter-buttons {
    margin: 10px auto 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  /* 🔘 필터 버튼 스타일 (기존 theme-button 스타일 재사용) */
  .filter-button {
    border: 1px solid darkseagreen;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 0.9em;
    background-color: #923b3b;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .filter-button:hover {
    background-color: darkseagreen;
    color: white;
  }
  
  /* 🗂️ 프로젝트 카드 스타일 */
  .project-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
  }
  
  .project-card {
    background-color: rgb(255, 255, 255);
    color: #923b3b;
    display: flex;  
    border-radius: 10px;
    justify-content: space-between;  
    align-items: center;  
    flex-direction: row; 
    text-align: left;  
    padding: 50px;
    border: 3px dashed #923b3b; 
    width: 80%; 
    margin: 20px auto; 
    max-width: 600px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
  }
  
  .project-card h3 {
    margin-top: 0;
    color: #923b3b;
  }
  
  .project-card a {
    color: darkseagreen;
    text-decoration: underline;
  }
  
  .project-card.hidden {
    display: none;
  }