/* Desktop */
@media (min-width: 800px) {
    .skills {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }

    .skills img {
        height: 80%;
        border-radius: 1vw;
    }

    .skillTypes {
        height: 80%;
        width: 40%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
    }

    .skill {
        width: 100%;
        padding: 2%;
    }

    .skill h2 {
        margin-bottom: 8px;
        font-size: 1vw;
    }

    .skill li {
        font-size: 0.8vw;
    }
}

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