.projects-container {
    list-style: none;
    padding-inline: 0px;
}

.project-container {
    margin: 0px 0px 50px 0px; 
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
}

.projectImage-container {
    text-align: center;
}

.projectImage-container img {
    object-fit: fill;
    width: 300px;
    height: 300px;
    border-radius: 25px;
}

.projectTitle-container {
    padding-top: 20px;
}

.projectTitle {
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    color: white;
    font-family: 'Press Start 2P', cursive;
    animation: pulseRedHover 2s infinite;
}

.outer-project-container.left:hover {
    cursor: pointer;
}

.outer-project-container.left img:hover {
    mix-blend-mode: luminosity;
}

.outer-project-container.left:hover .projectTitle {
    color: #ff0101;
}

.outer-project-container.left:hover .projectGenre {
    color: #0199ff;
}

.projectGenre {
    text-align: center;
    color: White;
    font-size: 15px;
    animation: pulseBlue 3s infinite;
    font-family: 'Press Start 2P', cursive;
    min-width: 250px;
}

.projectStatus-container {
    text-align: center;
}

.status {
    padding-block: 10px;
    text-align: center;
    color: White;
    text-decoration: none;
    font-size: 15px;
    font-family: 'Press Start 2P', cursive;
    line-height: 12px;
}

.status-active {
    color: rgb(0,255,0);
    text-shadow: 0 0 5px Black;
}

.status-inactive {
    color: Orange;
    text-shadow: 0 0 5px Black;
}

.status-complete {
    color: #007cff;
    text-shadow: 0 0 5px Black;
}

.status-abandoned {
    color: rgba(255,0,0);
    text-shadow: 0 0 5px Black;
}

.download-button {
    display: inline-block;
    min-width: 150px;
    margin: 10px 20px 10px 20px;
    box-shadow: 3px 5px 7px -3px Black;
    border-radius: 20px;
    text-align: center;
    color:white;
    padding:8px 0px;
    text-decoration:none;
    font-family: 'Press Start 2P', cursive;
    font-size: 15px;
    text-align: center;
}

.download-button:hover {
    color: rgb(0, 255, 0);
}

.demo-button, .release-button {
    background-color: rgba(0, 255, 0, 15%);
}

.download-button-disabled {
    color: grey;
    background-color: rgba(255, 0, 0, 15%);
}

.download-button-disabled:hover {
    cursor: not-allowed;
    color: grey;
    filter: blue(20px);
}

.projectProgress-container {
    min-width: 300px;
    padding: 20px;
    display: grid;
    grid-template-columns: 50px 1fr;
}

.projectProgress-label {
    width: 30px;
    height: 30px;
    padding: 3px;
}

.projectProgress-label:hover {
    cursor: help;
}

.projectProgress-bar {
    box-sizing: content-box;
    height: 15px;
    position: relative;
    margin: 0px 0 5px 0;
    background: rgba(255,255,255, 0.3);
    border-radius: 25px;
    padding: 5px;
    box-shadow: inset 0 -1px 1px rgba(0, 0, 0, 0.5);
}

.projectProgress-bar > span  {
    display: block;
    height: 100%;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3), inset 0 -2px 6px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.left {
    flex-basis: 50%;
}

.right {
    flex-basis: 50%;
}

.projectSpacer {
    height: 10px;
    border-width: 0;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 35%);
}

.projectSpacer:first-of-type {
    display: none;
}

@media screen and (max-width: 1000px) {
    .project-container {
        margin: 20px 0px 20px 0px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: center;
    }

    .outer-project-container.right .download-button, .projectProgress-container {
        display: none;
    }

    .status {
        display: block !important;
    }
}