.projectsZoneButtonContainer {
    display: flex;
    flex-wrap: wrap;
}

.projectsZoneButton {
    display: inline-block;

    padding: 12.5px;

    margin-right: 10px;
    margin-bottom: 10px;

    background-color: var(--midMid);
    color: var(--bg);

    border: none;
    outline: none;

    cursor: pointer;

    font-size: 20px;
    font-weight: bold;

    text-decoration: none;
    border-radius: 5px;

    transition: background-color 0.5s;
}

.projectsZoneButton:hover {
    background-color: var(--mDark);
}

.projectsContainer {
    margin-left: 20px;
    margin-top: -20px;
}

.projects {
    display: flex;
    flex-wrap: wrap;

    margin-bottom: -20px;

    width: 100%;
}

.noProjects {
    font-size: 20px;

    /*margin-left: auto;*/
    /*margin-right: auto;*/

    color: var(--dark);
}

.project {
    width: 48%;

    margin: 10px;

    padding: 20px;

    background-color: var(--midMid);

    border-radius: 10px;

    display: flex;
    justify-content: space-between;
}

.projectTitle {
    font-size: 24px;
    font-weight: bold;

    margin-bottom: 10px;

    color: var(--bg);
}

.projectDescription {
    max-width: 95%;
}

.projectDescription,
.projectDate,
.projectLocation,
.projectLink {
    font-size: 18px;

    color: var(--dark);

    margin-bottom: 5px;
}

.projectLink {
    text-decoration: none;
}

.projectImage {
    width: 200px;

    border-radius: 15px;
}

/* Media Queries */

@media screen and (max-width: 1250px) {
    .projects {
        width: 100%;
    }

    .projectsZoneButtonContainer {
        justify-content: center;
    }

    .projectsZoneButton {
        width: 100%;

        margin-bottom: 10px;
    }

    .projectsContainer {
        margin-left: 0;
    }

    .project {
        width: 100%;

        flex-direction: column;
    }

    .projectTitle {
        font-size: 20px;

        margin-bottom: 7.5px;
    }

    .projectDescription,
    .projectDate,
    .projectLocation,
    .projectLink {
        font-size: 16px;
    }

    .projectImageContainer {
        margin-top: 10px;

        display: flex;
        justify-content: center;
    }

    .projectImage {
        width: 175px;
    }
}