body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}
.portfolio-container {
    display: flex;
    gap: 20px; /* Add space between project cards */
    flex-wrap: wrap;
}
.project-card {
    background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 300px;
    text-align: center;
    transition: transform 0.2s;
    margin: 20px; /* Add margin to create space around each card */
}
.project-card:hover {
    transform: scale(1.05);
}
.image-container {
    position: relative;
}
.image-container img {
    width: 100%;
    height: auto;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding-top: 10px; /* Add top padding to the image */
    mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
}
.project-content {
    padding: 20px;
}
.project-card h3 {
    margin-top: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}
.project-card p {
    color: #555;
    margin-top: 10px;
}
.tags {
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.tag {
    background-color: #333;
    color: #fff;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 12px;
}
.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}
.project-footer p {
    margin: 0;
}
.project-footer .icons {
    display: flex;
    gap: 10px;
    margin-left: 10px; /* Add space between <p> and <div> */
}
.icon-link i {
    font-size: 20px;
    color: #333;
}
.project-link {
    color: #007bff;
    text-decoration: none;
}
.project-link:hover {
    text-decoration: underline;
}
