/* Desktop */
@media (min-width: 800px) {
    .cardContent {
        position: absolute;
        top: 0;
        right: -100vw;
        background: white;
        min-height: 100vh;
        width: 100%;
        transition: all 0.5s ease;
        z-index: 5;
        overflow-y: hidden;
    }
    .cardContent.show {
        right: 0;
        overflow-y: scroll;
    }

    .cardContent header {
        position: relative;
        height: 100px;
        width: 100%;
        background: #202020;
        border-bottom: solid 4px white;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cardContent header h1 {
        font-size: 2vw;
        color: whitesmoke;
    }

    .cardContent header a {
        position: absolute;
        top: 50%;
        left: 25px;
        transform: translateY(-50%);
        cursor: pointer;
        color: whitesmoke;
        font-size: 1.6vw;
        font-weight: 900;
    }

    .cardContent main {
        background: #202020;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        min-height: calc(100vh - 100px);
    }

    .workCard {
        background: white;
        box-shadow: none;
        margin-left: calc(((100vw - (17vw * 4)) / 4) / 2);
        margin-right: calc(((100vw - (17vw * 4)) / 4) / 2);
        margin-top: 2.5vh;
        margin-bottom: 2.5vh;
        height: 55vh;
        width: 17vw;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        flex-direction: column;
    }

    .workCard h2 {
        color: var(--blue);
        font-size: 1.2vw;
    }

    .workCard img {
        width: 85%;
        border-radius: 15px;
        border: solid 2px var(--blue);
    }

    .workCard p {
        width: 90%;
        font-size: 0.9vw;
        text-align: center;
    }

    .workCard hr {
        width: 90%;
    }
}

/* Phone */
@media (max-width: 800px) {

}