/* css for mobile screen */
nav .fa-solid {
    display: none;
}

/* hidden in big screen */
#sideMenu {
    display: none;
}

@media only screen and (max-width: 975px) {
    .main {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: space-between;
        padding-top: 100px;
    }

    .container {
        margin-bottom: 0;
        /* default: no margin */
    }

    #contact .container {
        margin-bottom: 20px;
        /* or whatever you need */
    }

    .forPc {
        display: none;
    }

    .forMobile {
        display: block;
        height: 3rem;
    }

    .stickyBlock {
        flex-direction: column;
        /* stack items vertically */
        text-align: center;
        /* center text/gif */
        gap: 1rem;
        /* reduce space */
        margin-top: 3rem;
    }

    .header-text {
        max-width: 100%;
    }

    .header-text h1 {
        font-size: 30px;
    }

    .sub-title {
        font-size: 40px;
    }

    #about {
        height: 100%;
    }

    .about-col-1,
    .about-col-2 {
        flex-basis: 100%;
    }

    .about-col-1 {
        margin-bottom: 30px;
    }

    .about-col-1 img {
        width: 15rem;
        /* max-width: 15rem; */
    }

    .about-col-2 {
        font-size: 14px;
    }

    .tab-links {
        font-size: 16px;
        margin-right: 20px;
    }

    .contact-right,
    .contact-left {
        flex-basis: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .copyright {
        font-size: 12px;
        padding: 10px 0;
    }

    .work-list {
        grid-gap: 1rem;
    }

    .contact-left {
        margin-bottom: 1rem;
    }
}