html {
    width: 100%;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

body {
    width: 100%;
    margin: 0 auto;
    background-color: #f5f5f5;
}

.container {
    margin: 0 auto;
    width: 86%;
    position: relative;
}


/*******************/
/* Landing Section */
/*******************/

.landing {
    background: white;
}

.hero {
    min-height: 95vh;
    padding: 7vw 0;
    box-sizing: border-box;
    max-width: 512px;
    display: flex;
    flex-direction: column;
}

.hero p {
    margin-top: 0;
}

.hero ul {
    list-style-type: none;
    padding: 0;
}

.hero li {
    margin-bottom: 0.5rem;
}

.hero a {
    color: initial;
    text-decoration: none;
    border-bottom: 2px solid orange;
}

.hero li a {
    color: initial;
    text-decoration: none;
    border-bottom: 2px solid orange;
}

.arrow-wrapper {
    flex-grow: 1;
    display: flex;
    align-items: flex-end;
    margin-top: 4rem;
}

.hero__arrow {
    color: white;
    font-size: 1.5rem;
    z-index: 10;
    background: darkorange;
    opacity: 0.5;
    width: 2.5rem;
    height: 2.5rem;
    vertical-align: center;
    display: flex;
    justify-content: center;
    line-height: 2.1rem;
    border-radius: 100%;
}

.hero img {
    width: 120px;
    height: 120px;
    box-sizing: border-box;
    align-self: flex-start;
    object-fit: cover;
    filter: grayscale(25%);
    overflow: hidden;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}

.hero__heading {
    position: relative;
}

.hero h1 {
    font-size: 1.5rem;
    margin: 0;
    z-index: 10;
    font-weight: normal;
    position: absolute;
    bottom: 0.8rem;
}

.hero h2 {
    font-size: 3.5rem;
    opacity: 0.5;
    color: darkorange;
    margin: 0;
    display: flex;
    position: relative;
    bottom: 0;
}

/*******************/
/* END Landing Section */
/*******************/




/*******************/
/* Experience and Project Section Base styles */
/*******************/
section {
    padding: 6rem 0;
}

.projects {
    background: white;
}

section h1 {
    font-size: 2rem;
    text-align: left;
    font-weight: 400;
    margin: 0 0 32px;
}

.item {
    margin-bottom: 6rem;
}

.item:last-child {
    margin-bottom: 0;
}

.item a {
    color: inherit;
    font-size: 1rem;
    text-decoration: none;
    border-bottom: 2px solid orange;
}

.item h2 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 500;
}

.item h3 {
    margin: 0 0 1rem;
    font-weight: normal;
    font-size: 1rem;
}

.item h4 {
    margin: 0;
    color: darkorange;
    font-weight: 600;
}

.item p + h4 {
    margin-top: 2rem;
}

.item p,
.item ul {
    margin: 0.5rem 0 1rem;
}

.item ul {
    list-style-type: none;
    padding: 0;
}

.item ul li {
    color: #333333;
}

.item img {
    width: 100%;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
    max-height: 240px;
    object-fit: cover;
    object-position: top;
    position: relative;
    z-index: 3;
    margin: 2rem 0;
}


/*****************/
/* Media Queries */
/*****************/

@media only screen and (min-width: 768px) {
    .hero img {
        width: 200px;
        height: 200px;
    }

    .item img {
        max-height: 400px;
    }
}

@media only screen and (min-width: 1200px) {

    .item {
        margin-bottom: 8rem;
    }

    .item img {
        max-height: unset;
        height: 50vw;
    }

    .container {
        width: 80%;
    }

    .hero h1 {
        font-size: 2rem;
        bottom: 1.15rem;
    }

    .hero h2 {
        font-size: 5rem;
    }
}

/*****************/
/* END Media Queries */
/*****************/