:root {
    --darkpurple: #0E0B16;
    --purple: #A239CA;
    --bluesihpeurple: #4717F6;
    --grey: #E7DFDD;
    --white: #FFFFFF;
    --black: #000000;
    --font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --body-font-size: 1rem;
    --body-font-weight: 400;
    --body-line-height: 1.5;
    --body-color: #212529;
}

*,
*::before,
*::after {
    box-sizing: border-box
}

@media(prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth
    }
}

body {
    margin: 0;
    font-family: var(--font-sans-serif);
    font-size: var(--body-font-size);
    font-weight: var(--body-font-weight);
    line-height: var(--body-line-height);
    color: var(--body-color);
    text-align: center;
    background-color: var(--white);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

header.header{
    text-align: center;
    color: #ffffff;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover
}

header.header .introText {
    padding-top: 150px;
    padding-bottom: 100px
}

header.header .introText .intro{
    font-size: 50px;
    line-height: 22px;
    margin-bottom: 25px;
    font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif; 
}

header.header .introText .introJob{
    font-size: 50px;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 25px;
    font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

@media(min-width: 768px) {
    header.header .introText {
        padding-top: 200px;
        padding-bottom: 150px
    }

    header.header .introText .intro {
        font-size: 100px;
        line-height: 40px;
        margin-bottom: 25px;
        font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif
    }

    header.header .introText .introJob {
        font-size: 75px;
        font-weight: 700;
        line-height: 75px;
        margin-bottom: 50px;
        font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif
    }
}

.Jobs, .Skills, .ProjectList {
    width: 100%;
    padding-right: calc(1.5rem * .5);
    padding-left: calc(1.5rem * .5);
    margin-right: auto;
    margin-left: auto
}

.Title{
    text-transform: uppercase !important;
    text-align: center !important;
    flex: 0 0 auto;
    width: 100%
}

.name , .description{
    text-align: left !important;
    margin: 0 0px 0px 0;
    vertical-align: bottom;
}

@media(min-width: 768px) {
    .Jobs, .Skills, .ProjectList{
        width: 720px;
    }
}


article {
    /*border: 1px solid red;*/
    width: 100%;
    margin: 0 10px 10px 0;
}

.Job, .Skill, .Project{
    display: flex;
    align-items: center;
}

.image{
    width: 75px;
    height: 75px;
    margin: 10px 10px;
}