/* Laptops */
@media (max-width: 992px) {

    /* Project Section */
    .project-card {
        width: 30%;
    }
}

/* Landscape Mobiles */

@media (max-width: 767.98px) {

    /* Navbar */
    nav {
        flex-direction: column;
    }

    /* Home Section */
    #intro-text-name {
        font-size: 3rem;
    }

    #intro-text-name>span {
        font-size: 4rem;
    }

    /* About Section */
    #about .content {
        flex-direction: column;
    }

    #about .expertise {
        width: 100%;
    }

    #expertise-title {
        text-align: center;
        padding-top: 2rem;
    }

    /* Project Section */
    .project-card {
        width: 45%;
    }
}

/* Mobiles */
@media (max-width: 576px) {
    #home {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #intro-text-name {
        font-size: 2rem;
    }

    #intro-text-name>span {
        font-size: 3rem;
    }

    /* Project Section */
    .project-card {
        width: 80%;
    }

    /* Contact / Footer Section */
    #contact .content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #contact .content>div {
        width: 90%;
    }

    #contact .content .contact-form {
        margin-top: 1rem;
    }
}