main {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    gap: 36px;
    padding: 20px;
    padding-bottom: 100px;
    /* Hide scrollbar for IE and Edge */
    -ms-overflow-style: none;
    /* Hide scrollbar for Firefox */
    scrollbar-width: none;
    font-family: 'Lato', sans-serif;
}

/* Hide scrollbar for Chrome, Safari and Opera */
main::-webkit-scrollbar {
    display: none;
}

main ul {
    list-style-type: circle;
    padding-left: 1em;
}

main h1 {
    font-size: 1.7rem;
    font-family: 'Roboto', sans-serif;
}

main h2 {
    font-size: 1.2rem;
}

main>:nth-child(1) {
    width: fit-content;
    flex-direction: column;
}

#contact h3 {
    font-size: 0.8rem;
    margin-top: 8px;
}

main>:nth-child(2) {
    padding-left: 20px;
}

main>:nth-child(2) ul li:not(:last-child) {
    padding-bottom: 0.5em;
}

main>div {
    display: flex;
    gap: 2rem;
    flex-direction: column;
    height: calc(100% - 400px);
}

hr {
    width: 100%;
    margin: 0;
}

#experience>div,
#education>div {
    margin-top: 16px;
}

#experience ul,
#summary ul {
    margin-top: 16px;
}

#experience p {
    font-size: 0.7rem;
    font-style: italic;
    /* line-height: 1.2; */
}

#experience h3,
#education h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

@media (max-width: 700px) {
    main {
        flex-direction: column;
        gap: 36px;
    }

    main>:nth-child(1) {
        width: fit-content;
        flex-direction: column;
    }

    main>:nth-child(2) {
        padding-left: 0;
    }

    main>div {
        display: flex;
        gap: 2rem;
        flex-direction: column;
        height: calc(100% - 400px);
    }

    #general {
        width: 100%;
    }

    #skills ul {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        column-gap: 1.65em;
    }

    #experience>div,
    #education>div {
        margin-top: 16px;
    }

    #experience ul,
    #summary ul {
        margin-top: 16px;
    }

    #experience p {
        font-size: 0.7rem;
        /* line-height: 1.2; */
    }

    #experience h3,
    #education h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
}