body {
    font-family: 'Champions', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    text-align: center;
}

.projects {
    padding: 40px 10px;
    background-color: white;
    width: 100vw;
}

.title {
    font-size: 28px;
    color: #204E37;
    margin-bottom: 20px;
    position: relative;
}

.title::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color: #72A85D;
    margin: 10px auto;
}

.project-container {
    width: auto;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 30px;
}

.project {
    width: 350px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.project img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-info {
    padding: 15px;
    background-color: #204E37;
    color: white;
}

.project-info p {
    font-size: 14px;
    margin-bottom: 10px;
}

.btn {
    background-color: #72A85D;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: #5A8A4B;
}
