.projects-container {
    padding-bottom: var(--margin-10);
}

.projects {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: stretch;
    justify-content: center;
}

.projects-item {
    flex: calc(33.33% - 10px);
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--white-color);
    padding: 10px;

    &:hover {
        background-color: rgba(0, 0, 0, 0.6);
    }

    @media (max-width: 765px) {

        flex: calc(50% - 10px);
    }

    @media (max-width: 600px) {

        flex: 100%;
    }
}

.projects-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    .button-open {
        text-decoration: none;
        color: var(--white-color);
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: var(--margin-10);

        &:hover {
            -webkit-box-shadow: 0px 0px 8px 6px rgba(17, 192, 157, 0.2);
            -moz-box-shadow: 0px 0px 8px 6px rgba(17, 192, 157, 0.2);
            box-shadow: 0px 0px 8px 6px rgba(17, 192, 157, 0.2);
        }

    }
}