/*1400px*/
@media screen and (max-width: 1400px) {
}

/*1200px*/
@media screen and (max-width: 1200px) {
    /*Home*/
    .home {
        margin: 0 2rem;
    }

    /*Skills, Projects*/
    .skill_subcategory, .projects {
        margin: 0 20px;
    }
}

/*910px*/
@media screen and (max-width: 910px) {
    /*Home*/
    .home {
        flex-direction: column;
        height: 840px;

        .home_info {
            text-align: center;
            line-height: normal;
            width: 100%;

            > div {
                margin: 0;
            }
        }

        .home_image {
            min-height: 500px;
            width: 100%;
        }

        .home_socials {
            justify-content: center;
            align-items: center;

            > div {
                margin-top: 10px;
                justify-content: center;
                text-align: center;
            }
        }
    }

    /*About Me*/
    .about_me {
        max-width: 70%;
    }

    /*Education, Experience*/
    .education, .experience {
        margin-left: 30px;
        margin-right: 30px;
    }
}

/*500px*/
@media screen and (max-width: 500px) {
    /*About Me*/
    .about_me {
        max-width: 90%;
        margin-top: 150px;
    }
}