
/*================= Background Structure ==================== */

.projects-container {
    height: auto;
    width: 100%;
    background-color: #171717;
}

/* ================= Project List Styles ================== */

.project-filter-button {
    width: 8rem;
    height: 4rem;
    border-style: none;
    font-family: 'RooneySans', sans-serif;
    font-size: 18px;
    font-size: 300;
    box-shadow: inset 0 0 0 0 white;
    transition: ease-out 0.3s;
}

.project-filter-button:hover {
    cursor: pointer;
    box-shadow: inset 300px 0 0 0 white;
    color: #E93754;
}

.projects-button-list {
    padding-top: 2rem;
    justify-content: center;
}

.filter-inactive {
    background-color: #E93754;
    color: white;
}

.filter-active {
    background-color: white;
    color: #E93754;
}

#projectView {
    padding-top: 2rem;
    -webkit-transition: ease-out 1s;
    -moz-transition: ease-out 1s;
    transition: ease-out 1s;
}

/* ============== Project Card Styles ================= */

.project-card {
    border-style: none;
    overflow: hidden;
    height: 24rem;
    border-radius: 0;
    background-color: #283747;
    box-shadow: inset 0 0 0 0 #412FFC;
    color: white;
    transition: ease-out 0.6s;
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
}

.project-card:hover {
    box-shadow: inset 600px 0 0 0 #412FFC;
}

.project-card-thumbnail {
    height: 20vh;
    overflow: hidden;
    object-fit: cover;
}

.project-tag-shape {
    display: inline-block;
    margin: 5px;
    padding: .6em 1em;
    font-size: 80%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white=space: nowrap;
    vertical-align: middle;
    border-radius: 0;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.project-tag {
    height: 2rem;
    background-color: #0ac8fc;
}

@media only screen and (max-width: 755px) {
    .project-tag {
        visibility: hidden;
    }
}
