/* Desktop */
@media (min-width: 800px) {
    .work {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        min-width: 100vw;
        position: relative;
        overflow-x: hidden;
    }

    .work .workClass {
        height: 55vh;
        width: 17vw;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        flex-direction: column;
    }

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

    .work .workClass img {
        width: 85%;
        border-radius: 15px;
    }

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

    .work .workClass hr {
        width: 90%;
    }
}

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