.projects-section {
    display: flex;
    justify-content: center;
}

.project-section-body {
    background-image: url(../assets/img/Background-secondary.png);
    width: 96vw;
    border-radius: 8px;
    height: 80vh;
    max-width: 1440px;
    max-height: 1920px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    align-items: center;
}

.projects-field {
    height: 80%;
    margin: 16px;
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    overflow-y: auto;
    max-height: 80%;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 255, 0.584) rgba(0, 0, 255, 0.063);
    max-height: 56vh;

}

.projects-section-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.project-card {
    color: white;
    background-color: #0f3654;
    padding: 12px 12px 12px 12px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    height: 160px;
    width: 128px;
    transition: 0.3 ease-in-out;
}

@media(max-width:550px) {
    .projects-field {
        justify-content: center;
    }

    .project-card {
        justify-content: center;
        align-items: center;
        height: clamp(160px, calc(275.2px - 6vw), 256px);
        width: clamp(128px, calc(233.6px - 5.5vw), 216px);
    }
}

.project-card:hover {
    cursor: pointer;
    background-color: #0f36545d;

}

.project-card-img {
    height: 72px;
    width: 128px;
}

@media(max-width:550px) {
    .project-card-img {
        height: clamp(72px, calc(177.6px - 5.5vw), 160px);
        width: clamp(128px, calc(233.6px - 5.5vw), 216px);
    }
}

.project-name {
    display: flex;
    text-align: center;
    justify-content: center;
}

.tech-stack-img {
    width: 44px;
    height: 44px;
}

.project-tech-stack {
    display: flex;
    flex-direction: row;
    gap: 4px;
    justify-content: center;
}