@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    font-display: auto;
    src: local("Roboto"), local("Roboto-Regular"), url("./fonts/roboto-400.woff2") format("woff2"), url("./fonts/roboto-400.woff") format("woff");
}
@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 700;
    font-display: auto;
    src: local("Roboto Bold"), local("Roboto-Bold"), url("./fonts/roboto-700.woff2") format("woff2"), url("./fonts/roboto-700.woff") format("woff");
}
@font-face {
    font-family: "Font Awesome 5 Brands";
    font-weight: 400;
    font-display: auto;
    src: url("./fonts/fa-brands-400.woff2") format("woff2"), url("./fonts/fa-brands-400.woff") format("woff");
}
@font-face {
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    font-display: auto;
    src: url("./fonts/fa-regular-400.woff2") format("woff2"), url("./fonts/fa-regular-400.woff") format("woff");
}
@font-face {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-display: auto;
    src: url("./fonts/fa-solid-900.woff2") format("woff2"), url("./fonts/fa-solid-900.woff") format("woff");
}
:root {
    --content-width: 80%;
}

body,
html {
    padding: 0;
    margin: 0;
    -webkit-margin: 0;
    box-sizing: border-box;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 2em;
    background-color: #fff;
    color: #333;
}
p {
    font-size: 16px;
}
a {
    color: #333;
    text-decoration: none;
    font-weight: 700;
    margin: 0;
    padding: 0;
}
li {
    list-style-type: none;
}
.fas {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}
.fab {
    font-family: "Font Awesome 5 Brands";
}
.far {
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
}
.green {
    font-size: 18px;
    color: #2bbbad;
    font-weight: 700;
}
.white {
    color: #fff;
}
.header {
    background-color: #fff;
    border-bottom: solid 1px rgba(144, 144, 144, 0.25);
    color: #484848;
    height: 65px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.header-inner {
    width: var(--content-width);
    max-width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}
.header h1 {
    font-size: 24px;
    color: #484848;
    font-weight: 700;
    margin: 0;
}
.header h1 a {
    text-decoration: none;
    color: #484848;
}
.menu {
    margin: 0;
}
.menu ul {
    list-style: none;
    font-size: 16px;
}
.menu ul li {
    display: inline;
    margin-left: 30px;
    font-weight: 700;
}
.menu ul li a {
    transition: color 0.2s ease-in-out;
    color: #484848;
    text-decoration: none;
}
.menu ul li a:hover {
    color: #2bbbad;
}
#menuToggle {
    display: none;
}
.contact,
.contact-button,
.intro {
    backface-visibility: hidden;
    line-height: 1.75;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(rgba(51, 51, 51, 0.6), rgba(51, 51, 51, 0.6)), url(images/background.jpg);
    animation: background-scroll-reverse 15s ease infinite;
    animation-timing-function: linear;
    animation-play-state: paused;
    opacity: 0;
}
@keyframes background-scroll-reverse {
    100% {
        background-position: 400px 400px;
    }
}
.contact-inner {
    width: var(--content-width);
    max-width: 100%;
    margin: 0 auto;
    padding: 100px 0 110px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    box-sizing: border-box;
}
.contact-inner .section-title.contact-title {
    margin: 0;
    flex-basis: auto;
    width: fit-content;
    max-width: 100%;
    text-align: center;
    justify-self: center;
}
.contact-links {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 20px;
    color: #fff;
    line-height: 2;
    text-align: left;
    justify-self: center;
    min-width: 0;
    max-width: 100%;
    width: max-content;
}
.contact-links li {
    display: flex;
    align-items: center;
}
.contact-links a {
    color: #fff;
    font-weight: 400;
}
.contact-links a:hover {
    color: #2bbbad;
}
.contact-links i {
    flex-shrink: 0;
    margin-right: 16px;
    color: #2bbbad;
}
.contact-button {
    padding: 100px 0;
}
.intro {
    padding: 150px 0 100px;
}
.intro h2,
.intro p {
    width: min(85%, 40rem);
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}
.intro h2 {
    color: #fff;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}
.contact-button h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 0;
}
.contact-button p,
.intro p {
    color: #eee;
    font-size: 24px;
    text-shadow: 0 1px 0 #000;
}
.contact-button p {
    margin-bottom: 50px;
}
.intro-lead {
    margin-bottom: 0;
}
.intro-thanks {
    margin-top: 1.25rem;
    margin-bottom: 50px;
}
.button {
    font-size: 16px;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    color: #fff;
    background-color: #2bbbad;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    width: 150px;
    height: 50px;
    padding: 5px 20px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}
.button:hover {
    background-color: #323037;
}
.summary {
    margin: 0 auto 50px;
    width: var(--content-width);
    display: flex;
    text-align: justify;
    flex-wrap: wrap;
}
.overview {
    flex-basis: 100%;
    width: 100%;
    margin: 80px 0 0;
    text-align: left;
}
.column {
    width: 42.5%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.skills-columns {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 5%;
    align-items: stretch;
}
.summary h2 {
    font-size: 44px;
    align-self: flex-start;
    line-height: 1.5;
    margin-bottom: 30px;
}
.skill-item {
    padding: 0;
    margin: 0;
    min-width: 0;
    font-size: 30px;
}
.skill-item i {
    margin-right: 15px;
}
.skill-item h3 {
    font-size: 20px;
    display: flex;
    align-items: flex-end;
    margin: 50px 0 10px;
}
.skills-columns > .skill-item:nth-child(-n + 2) h3 {
    margin-top: 0;
}
.skill-item img {
    width: 40px;
    margin: 0 15px 0 0;
}
.skill-item p {
    margin: 0;
}
.projects {
    margin: 50px auto 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}
.project {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    width: var(--content-width);
}
.card {
    min-height: 540px;
    margin-top: 50px;
    padding: 20px;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
    cursor: default;
}
.card:hover {
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.2);
}
.section-title {
    text-align: center;
    font-size: 44px;
    flex-basis: 100%;
    margin-bottom: 30px;
    line-height: 1.5;
    padding-bottom: 15px;
    background: linear-gradient(to left, transparent 25%, #2bbbad 25%, #2bbbad 75%, transparent 75%) bottom no-repeat;
    background-size: 10em 3px;
}
.image-icon {
    height: 78px;
}
.project-title {
    font-size: 32px;
    text-align: center;
}
.button-container {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 90%;
}
form > input[type="submit"] {
    font-family: Roboto, sans-serif;
    width: 160px;
    height: 50px;
    padding: 5px 20px;
    border: 0;
    letter-spacing: 0.05em;
}
.project-description {
    width: 80%;
    text-align: justify;
    height: 180px;
}
footer {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 24px 16px;
}
#footer-link {
    color: #333;
}
#footer-link:hover {
    color: #2bbbad;
}
.footer-bottom {
    text-align: center;
    color: #333;
}
@media screen and (max-width: 1080px) {
    .button-container,
    .summary {
        flex-direction: column;
    }
    .summary {
        margin: 30px auto;
    }
    .button-container form {
        margin-bottom: 30px;
    }
    .contact-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 24px;
        padding: 70px 0 80px;
        width: 96%;
    }
    .contact-links {
        font-size: 18px;
        margin-left: auto;
        margin-right: auto;
    }
    .contact-inner .section-title.contact-title {
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
    .contact-button p,
    .intro p {
        width: min(90%, 40rem);
    }
    .contact-button h2,
    .intro h2 {
        line-height: 1.2;
        width: auto;
    }
    .column {
        width: 100%;
    }
    .skills-columns {
        grid-template-columns: 1fr;
    }
    .skills-columns > .skill-item:nth-child(-n + 2) h3 {
        margin-top: 50px;
    }
    .skills-columns > .skill-item:first-child h3 {
        margin-top: 0;
    }
    .overview {
        margin: 30px 0 0;
    }
    .card,
    .project-description {
        height: 100%;
    }
    .project {
        width: 96%;
    }
    .header-inner {
        position: relative;
        width: 96%;
    }
    .menu {
        width: 100%;
        background-color: #fff;
        margin: 0;
        position: absolute;
        top: 65px;
        display: none;
        justify-content: center;
        align-items: center;
        border-bottom: solid 1px rgba(144, 144, 144, 0.25);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    }
    .menu ul {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin: 15px 0;
        padding: 0;
    }
    .menu ul li {
        display: block;
    }
    #menuToggle {
        display: inherit;
        margin: 0;
        cursor: pointer;
    }
    .isVisible {
        display: flex;
    }
}
.fab,
.far,
.fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}
.fa-2x {
    font-size: 2em;
}
.fa-5x {
    font-size: 5em;
}
.fa-address-book:before {
    content: "\f2b9";
}
.fa-angular:before {
    content: "\f420";
}
.fa-bars:before {
    content: "\f0c9";
}
.fa-briefcase:before {
    content: "\f0b1";
}
.fa-broadcast-tower:before {
    content: "\f519";
}
.fa-bullseye:before {
    content: "\f140";
}
.fa-calendar-alt:before {
    content: "\f073";
}
.fa-chart-line:before {
    content: "\f201";
}
.fa-code:before {
    content: "\f121";
}
.fa-css3-alt:before {
    content: "\f38b";
}
.fa-database:before {
    content: "\f1c0";
}
.fa-envelope:before {
    content: "\f0e0";
}
.fa-film:before {
    content: "\f008";
}
.fa-flag:before {
    content: "\f024";
}
.fa-github:before {
    content: "\f09b";
}
.fa-handshake:before {
    content: "\f2b5";
}
.fa-heartbeat:before {
    content: "\f21e";
}
.fa-html5:before {
    content: "\f13b";
}
.fa-id-card:before {
    content: "\f2c2";
}
.fa-images:before {
    content: "\f302";
}
.fa-js:before {
    content: "\f3b8";
}
.fa-money-bill-alt:before {
    content: "\f3d1";
}
.fa-money-check-alt:before {
    content: "\f53d";
}
.fa-node-js:before {
    content: "\f3d3";
}
.fa-object-ungroup:before {
    content: "\f248";
}
.fa-percent:before {
    content: "\f295";
}
.fa-print:before {
    content: "\f02f";
}
.fa-react:before {
    content: "\f41b";
}
.fa-shipping-fast:before {
    content: "\f48b";
}
.fa-star:before {
    content: "\f005";
}
.fa-utensils:before {
    content: "\f2e7";
}
.fa-warehouse:before {
    content: "\f494";
}
.fa-sort-amount-up:before {
    content: "\f161";
}
.fa-file-alt:before {
    content: "\f15c";
}
.fa-user-check:before {
    content: "\f4fc";
}
.fa-user-tie:before {
    content: "\f508";
}
.fa-flask:before {
    content: "\f0c3";
}
.fa-sort-numeric-up-alt:before {
    content: "\f887";
}
.fa-table:before {
    content: "\f0ce";
}
.fa-box-open:before {
    content: "\f49e";
}
.fa-bar-chart:before {
    content: "\f080";
}
.fa-bolt:before {
    content: "\f0e7"
}
.fa-mobile:before {
    content: "\f3cf"
}