    /* ==== GOOGLE FONTS ===== */
    
    @import url("./fonts/Roboto/Roboto-Regular.ttf");
    /* ==== VARIABLES CSS ===== */
    
     :root {
        --header-height: 3rem;
        --font-semi: 600;
    }
    /* ==== COLOR ===== */
    
     :root {
        --first-color: #1878d1;
        --second-color: #0e2431;
    }
    /* ==== FONT & TYPOGRAPHY ===== */
    
     :root {
        --body-font: 'Roboto', sans-serif;
        --big-font-size: 2rem;
        --h2-font-size: 1.25rem;
        --normal-font-size: 0.983rem;
    }
    
    @media screen and (min-width: 768px) {
         :root {
            --big-font-size: 3.5rem;
            --h2-font-size: 2rem;
            --normal-font-size: 1rem;
        }
    }
    /* ==== MARGIN ===== */
    
     :root {
        --mb-1: 0.5rem;
        --mb-2: 1rem;
        --mb-3: 1.5rem;
        --mb-4: 2rem;
        --mb-5: 2.5rem;
        --mb-6: 3rem;
    }
    /* ==== Z-INDEX ===== */
    
     :root {
        --z-back: -10;
        --z-normal: 1;
        --z-tooltip: 10;
        --z-fixed: 100;
    }
    /* ==== BASE ===== */
    
    *,
     ::before,
     ::after {
        box-sizing: border-box;
    }
    
    html {
        scroll-behavior: smooth;
    }
    
    body {
        margin: var(--header-height);
        font-family: var(--body-font);
        font-size: var(--normal-font-size);
        color: var(--second-color);
    }
    
    h1,
    h2,
    p {
        margin: 0;
    }
    
    ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    a {
        text-decoration: none;
    }
    
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    /* ==== CLASS CSS ===== */
    
    .section-title {
        position: relative;
        font-size: var(--h2-font-size);
        color: var(--first-color);
        margin-top: var(--mb-2);
        margin-bottom: var(--mb-4);
        text-align: center;
    }
    
    .section-title::after {
        position: absolute;
        content: "";
        width: 64px;
        height: 0.18rem;
        left: 0;
        right: 0;
        margin: auto;
        top: 2rem;
        background-color: var(--first-color);
    }
    
    .section {
        padding-top: 3rem;
        padding-bottom: 2rem;
    }
    
    .nav__logo img {
        height: 45px;
    }
    /*===== LAYOUT =====*/
    
    .bd-grid {
        max-width: 1024px;
        display: grid;
        grid-template-columns: 100%;
        grid-column-gap: 2rem;
        width: calc(100% - 2rem);
        margin-left: var(--mb-2);
        margin-right: var(--mb-2);
    }
    
    .l-header {
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: var(--z-fixed);
        background-color: #fff;
        /*box-shadow: 0 1px 4px rgba(146, 161, 176, .15);*/
    }
    /*===== NAV =====*/
    
    .nav {
        height: var(--header-height);
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: var(--font);
    }
    
    @media screen and (max-width: 768px) {
        .nav__menu {
            position: fixed;
            top: var(--header-height);
            right: -100%;
            width: 80%;
            height: 100%;
            padding: 2rem;
            background-color: var(--second-color);
            transition: .5s;
        }
    }
    
    .nav__item {
        margin-bottom: var(--mb-4);
    }
    
    .nav__link {
        position: relative;
        color: #fff;
    }
    
    .nav__link:hover {
        position: relative;
    }
    
    .nav__link:hover::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 0.18rem;
        left: 0;
        top: 2rem;
        background-color: var(--first-color);
    }
    
    .nav__logo {
        color: var(--second-color);
    }
    
    .nav__toggle {
        color: var(--second-color);
        font-size: 1.5rem;
        cursor: pointer;
    }
    /*Active menu*/
    
    .active::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 0.18rem;
        left: 0;
        top: 2rem;
        background-color: var(--first-color);
    }
    /*=== Show menu ===*/
    
    .show {
        right: 0;
    }
    /*===== HOME =====*/
    
    .home {
        height: calc(100vh - 3rem);
        row-gap: 1rem;
    }
    
    .home__data {
        align-self: center;
    }
    
    .home__title {
        font-size: var(--big-font-size);
        margin-bottom: var(--mb-5);
    }
    
    .home__title-color {
        color: #1878d1;
    }
    
    .home__social {
        display: flex;
        flex-direction: column;
    }
    
    .home__social-icon {
        width: max-content;
        margin-bottom: var(--mb-2);
        font-size: 1.5rem;
        color: var(--second-color);
    }
    
    .home__social-icon:hover {
        color: var(--first-color);
    }
    
    .home__img {
        position: absolute;
        right: 10%;
        left: 63%;
        bottom: 0;
        width: 200px;
    }
    /*BUTTONS*/
    
    .button {
        padding: .75rem 2.5rem;
        font: normal 500 16px/20px;
        position: relative;
        border: 3px solid transparent;
        border-radius: 4px;
        background: linear-gradient(90deg, #4458dc 0%, #1886ee 100%);
        background-clip: padding-box;
        color: whitesmoke;
        transition: background .6s ease;
        box-shadow: 0 10px 36px rgba(0, 0, 0, .15);
    }
    
    .button:hover {
        box-shadow: 0 10px 36px rgba(0, 0, 0, .15);
        background: whitesmoke;
        background-clip: padding-box;
        color: black;
    }
    
    .button::after {
        position: absolute;
        top: -2px;
        left: -2px;
        bottom: -2px;
        right: -2px;
        background: linear-gradient(90deg, #4458dc 0%, #1886ee 100%);
        content: '';
        z-index: -1;
        border-radius: 4px;
    }
    /* ===== ABOUT =====*/
    
    .about__container {
        row-gap: 2rem;
        text-align: center;
    }
    
    .about__subtitle {
        margin-bottom: var(--mb-2);
    }
    
    .about__img {
        justify-self: center;
    }
    
    .about__img img {
        width: 200px;
        border-radius: .5rem;
    }
    
    ol {
        padding: 0px 15px;
    }
    /* ===== SKILLS =====*/
    
    .skills__container {
        row-gap: 2rem;
        text-align: center;
    }
    
    .skills__subtitle {
        margin-bottom: var(--mb-2);
        text-align: center;
    }
    
    .skills__text {
        margin-bottom: var(--mb-4);
        text-align: center;
    }
    /* The actual timeline (the vertical ruler) */
    
    .timeline {
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
    }
    /* The actual timeline (the vertical ruler) */
    
    .timeline::after {
        content: '';
        position: absolute;
        width: 6px;
        background-color: var(--first-color);
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -3px;
    }
    /* Container around content */
    
    .container {
        padding: 10px 40px;
        position: relative;
        background-color: inherit;
        border: black;
        width: 50%;
    }
    /* The circles on the timeline */
    
    .container::after {
        content: '';
        position: absolute;
        width: 25px;
        height: 25px;
        right: -12px;
        background-color: white;
        border: 4px solid var(--first-color);
        top: 15px;
        border-radius: 50%;
        z-index: 1;
    }
    /* Place the container to the left */
    
    .left {
        left: 0;
    }
    /* Place the container to the right */
    
    .right {
        left: 50%;
    }
    /* Add arrows to the left container (pointing right) */
    
    .left::before {
        content: " ";
        height: 0;
        position: absolute;
        top: 18px;
        width: 0;
        z-index: 1;
        right: 30px;
        border: medium solid whitesmoke;
        border-width: 10px 0 10px 10px;
        border-color: transparent transparent transparent whitesmoke;
    }
    /* Add arrows to the right container (pointing left) */
    
    .right::before {
        content: " ";
        height: 0;
        position: absolute;
        top: 20px;
        width: 0;
        z-index: 1;
        left: 30px;
        border: medium solid whitesmoke;
        border-width: 10px 10px 10px 0;
        border-color: transparent whitesmoke transparent transparent;
    }
    /* Fix the circle for containers on the right side */
    
    .right::after {
        left: -13px;
    }
    /* The actual content */
    
    .content {
        padding: 20px 30px;
        background-color: whitesmoke;
        position: relative;
        border-radius: 6px;
    }
    
    .time-right {
        position: absolute;
        top: 10px;
        right: -130px;
        padding: 8px 16px;
        background: linear-gradient(90deg, #4458dc 0%, #1886ee 100%);
        color: #fff;
        border-radius: 18px;
    }
    
    .time-left {
        position: absolute;
        top: 10px;
        left: -130px;
        padding: 8px 16px;
        background: linear-gradient(90deg, #4458dc 0%, #1886ee 100%);
        color: #fff;
        border-radius: 18px;
    }
    /* Media queries - Responsive timeline on screens less than 600px wide */
    
    @media screen and (max-width: 600px) {
        /* Place the timelime to the left */
        .timeline::after {
            left: 0px;
            /*initial 31px*/
        }
        /* Full-width containers */
        .container {
            width: 100%;
            padding-top: 50px;
            padding-left: 25px;
            padding-right: 5px;
        }
        /* Make sure that all arrows are pointing leftwards */
        .container::before {
            left: 15px;
            top: 0%;
            border: medium solid transparent;
            border-width: 10px 10px 10px 0;
            border-color: transparent transparent transparent transparent;
        }
        .time-left {
            top: 0%;
            left: 8%;
        }
        .time-right {
            top: 0%;
            right: 60%;
        }
        /* Make sure all circles are at the same spot */
        .left::after {
            top: 1%;
            right: 96%;
        }
        /* Make all right containers behave like the left ones */
        .right {
            top: 0%;
            left: 0%;
        }
    }
    /* ===== WORK =====*/
    
    .work__container {
        row-gap: .2rem;
    }
    
    .work__img {
        box-shadow: 0 4px 25px rgba(14, 36, 49, .15);
        border-radius: 0rem;
        overflow: hidden;
    }
    
    .work__img img {
        transition: 1s;
        cursor: pointer;
    }
    
    .work__img img:hover {
        transform: scale(1.1);
    }
    /* ===== FOOTER =====*/
    
    .footer {
        background-color: whitesmoke;
        color: var(--second-color);
        text-align: center;
        font-weight: var(--font-semi);
        padding: 2rem 0;
    }
    
    .footer__title {
        font-size: 2rem;
        margin-bottom: var(--mb-4);
    }
    
    .footer__social {
        margin-bottom: var(--mb-4);
    }
    
    .footer__icon {
        font-size: 1.5rem;
        color: var(--second-color);
        margin: 0 var(--mb-2)
    }
    
    .footer__icon:hover {
        color: var(--first-color);
    }
    /* ===== MEDIA QUERIES=====*/
    
    @media screen and (max-width: 600px) {
        .home__img {
            width: 170px;
            left: 40%;
            bottom: 0%;
        }
    }
    
    @media screen and (min-width: 768px) {
        body {
            margin: 0;
        }
        .section {
            padding-top: 4rem;
            padding-bottom: 3rem;
        }
        .section-title {
            margin-bottom: var(--mb-6);
        }
        .section-title::after {
            width: 80px;
            top: 3rem;
        }
        .nav {
            height: calc(var(--header-height) + 1rem);
        }
        .nav__list {
            display: flex;
            padding-top: 0;
        }
        .nav__item {
            margin-left: var(--mb-6);
            margin-bottom: 0;
        }
        .nav__toggle {
            display: none;
        }
        .nav__link {
            color: var(--second-color);
        }
        .home {
            height: 100vh;
        }
        .home__data {
            align-self: flex-end;
        }
        .home__social {
            padding-top: 0;
            padding-bottom: 2.5rem;
            flex-direction: row;
            align-self: flex-end;
        }
        .home__social-icon {
            margin-bottom: 0;
            margin-right: var(--mb-4);
        }
        .home__img {
            width: 210px;
            bottom: 35%;
        }
        .about__container,
        .timeline {
            grid-template-columns: repeat(2, 1fr);
            align-items: center;
            text-align: initial;
        }
        .about__img img {
            width: 300px;
        }
        .work__container {
            grid-template-columns: repeat(5, 1fr);
            grid-template-rows: repeat(2, 1fr);
            column-gap: .2rem;
        }
        .contact__form {
            width: 360px;
        }
        .contact__container {
            justify-items: center;
        }
    }
    
    @media screen and (min-width: 1024px) {
        .bd-grid {
            margin-left: auto;
            margin-right: auto;
        }
        .home__img {
            right: 10%;
        }
    }
