#projects {
    display: flex;
    gap: 10px;
    padding-bottom: 80px;
}

.projects__cards-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    gap: 50px;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.card img {
    border-radius: 10px;
    width: 100%;
    -webkit-box-shadow: 0px 4px 21px -12px rgba(66, 68, 90, 1);
    -moz-box-shadow: 0px 4px 21px -12px rgba(66, 68, 90, 1);
    box-shadow: 0px 4px 21px -12px rgba(66, 68, 90, 1);
}

.card img:hover {
    transform: scale(1.02);
}

.project__card-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.project__card-details p {
    font-size: 14px;
}

.project__card-links {
    display: flex;
    gap: 10px;
}

.card-link {
    background-color: #3e3e3e;
    color: white;
    text-decoration: none;
    padding: 10px;
    font-size: 14px;
    border-radius: 8px;
}

