.filters {
margin-bottom: 20px;
}
#name-search {
width: 100%;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ddd;
border-radius: 5px;
box-sizing: border-box;
}
.tags-list {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-bottom: 20px;
}
.tag {
background-color: #f0f0f0;
border: none;
padding: 5px 10px;
border-radius: 20px;
cursor: pointer;
transition: background-color 0.3s;
}
.tag:hover, .tag.active {
background-color: #007bff;
color: white;
}
.projects-list {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 20px;
padding: 0 10px;
}
.project {
border: 1px solid #ddd;
border-radius: 5px;
padding: 15px;
background-color: white;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.project h2 {
font-size: 1.25rem;
font-weight: 600;
margin-top: 0;
}
.project-info h2 {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 0.5rem;
}
.project h2 a {
color: #007bff;
text-decoration: none;
}
.project h2 a:hover {
text-decoration: underline;
}
.project p {
margin-bottom: 10px;
}
@media (max-width: 600px) {
.projects-list {
    grid-template-columns: 1fr;
    padding: 0 5px;
}
}