body {
    font-family: Arial, sans-serif;
}

.title {
    text-align: center;
    margin: 20px 0;
}

.search-bar {
    text-align: center;
    margin: 20px 0;
}

.search-bar input[type="text"] {
    width: 300px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.projects {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.project-box {
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    width: 300px;
    height: 300px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
            flex-direction: column;
            align-items: center;
}

.project-box h2 {
    margin: 10px 0;
}

.project-box p {
    color: #666;
}


.projects a{
    text-decoration: none;
    display: block;
    color: black;
    height: 100%;
}
.projects img{
    position: relative;
    max-width: 100%;
    max-height: 35%;
    object-fit: contain;
}