html {
    font-size: 10px;
}
/* ================================================================== */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) { 
    html {
        font-size: 12px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) { 
    html {
        font-size: 14px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 
    html {
        font-size: 16px;
    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { 
    html {
        font-size: 18px;
    }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) { 
    html {
        font-size: 20px;
    }
}

/* ================================================================== */

@media (max-width: 660px) {
    .home {
        grid-template-columns: 1fr;
    }
    .home-profile-img {
        order: 1;
    }
    .home-info {
        order: 2;
    }
    .nav-ul {
        flex-flow: column;
    }
    .nav-ul li {
        width: 80%;
    }
    .nav-ul a {
        width: 100%;
    }
    .main-content-about {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .projects-content-item {
        flex-flow: column;
    }
    .projects-content-item-img {
        width: 75%;
    }
    .projects-content-item-info {
        width: 75%;
    }
}
@media (min-width: 460px) {
    .side-bar-mobile {
        width: 35%;
    }
}