.total-container {
    height: fit-content;
    width: 60%;
    position: absolute;
    left: calc(50% - 30% - 31px);
    top: 10%;
    padding: 30px 30px 15px 30px;
    border-radius: 10px;
    border: 1px solid var(--border-grey);
    box-shadow: 0 0 20px 2px #0a0a0d;
    margin-bottom: 100px;
}

@media(max-width: 500px) {
    .total-container {
        width: 80%;
        left: calc(50% - 40% - 31px);
    }
}

.project-container {
    width: 100%;
    height: fit-content;
    position: relative;
    left: 0;
    border-radius: 10px;
    border: 1px solid var(--border-grey);
    margin-bottom: 15px;
    transition: all 0.2s;
    background-position: top;
    background-size: 300px;
    box-shadow: 0 0 20px 2px #0a0a0d;
}

    .project-container.hover:hover {
        transform: translateY(5px);
        background-color: var(--selected);
    }

.project-container-overlay-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 10px;
    background: linear-gradient(to right, var(--dark-grey) 0%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0) 90%, var(--dark-grey) 100%);
    opacity: 0.5;
    transition: opacity 0.6s;
}

    .project-container-overlay-gradient:hover {
        opacity: 0;
    }

.project-title {
    position: relative;
    left: 2vw;
    top: 5px;
    margin-bottom: 7px;
    width: 80%;
    height: fit-content;
    font-size: 30px;
    font-weight: 500;
    text-shadow: 0 0 5px black;
    color: white;
    background-position: center;
    background-size: cover;
    font-family: system-ui,-apple-system,system-ui,"Helvetica Neue",Helvetica,Arial,sans-serif;
}

.progress-bar-container {
    display: block;
    border-radius: 10px;
    background-color: var(--selected);
    border: 1px solid var(--light-grey);
    width: calc(100% - 60px);
    height: 7px;
    position: relative;
    left: 10px;
    top: 5px;
    display: inline-block;
}

.progress-bar {
    border-radius: 10px;
    background-color: var(--blue);
    width: 0%;
    height: 100%;
    position: relative;
    box-shadow: 0 0 4px var(--blue);
    transition: all 1s;
}

.progress-text {
    border-radius: 10px;
    border: 1px solid var(--light-grey);
    position: relative;
    text-align: center;
    line-height: 17px;   
    top: -12.75px;
    left: calc(100% + 5px);
    width: 37px;
    height: 17px;
    font-weight: 500;
    font-size: 10px;
    color: white;
    font-family: system-ui,-apple-system,system-ui,"Helvetica Neue",Helvetica,Arial,sans-serif;
    text-shadow: 0 0 5px black;
}

.project-description {
    font-weight: 500;
    font-size: 17px;
    color: white;
    font-family: system-ui,-apple-system,system-ui,"Helvetica Neue",Helvetica,Arial,sans-serif;
    position: relative;
    width: calc(100% - 50px);
    left: 25px;
    margin: 20px 0;
}

.project-video {
    width: 90%;
    left: 5%;
    margin: 15px 0 12px 0;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 0 20px 2px #0a0a0d;
    border: none;
}

.project-audio {
    width: 90%;
    left: 5%;
    margin: 15px 0 12px 0;
    position: relative;
    border-radius: 30px;
    box-shadow: 0 0 20px 2px #0a0a0d;
}

.project-link {
    display: block;
    text-align: center;
    width: 90%;
    padding: 15px 5% 12px 5%;
    position: relative;
    font-weight: 500;
    font-size: 18px;
    overflow-wrap: break-word;
    color: var(--blue);
    text-shadow: 0 0 8px black;
    font-family: system-ui,-apple-system,system-ui,"Helvetica Neue",Helvetica,Arial,sans-serif;
}

.project-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin: 0;
    left: 0;
    position: relative;
    border-radius: 10px;
    object-position: center;
}

.tag-container {
    position: absolute;
    width: calc(100% - 180px);
    right: 10px;
    top: 0;
    height: 100%;
}

    .tag-container .project-tag {
        top: calc(50% - 8.5px);
        margin: 0 20px 10px 0;
        scale: 1.2;
        float: right;
    }

@media (max-width: 800px) {
    .tag-container {
        position: relative;
        width: calc(100%);
        left: 20px;
        top: -10px;
        height: 30px;
    }

        .tag-container .project-tag {
            float: left;
        }
}

@keyframes container-load {
    0% {
        display: none;
    }
    90% {
        display: none;
    }
    100% {
        display: block;
    }
}