@font-face {
            font-family: 'merriweather_lightregular';
            src: url('../fonts/merriweather_light-webfont.woff2') format('woff2'),
                url('../fonts/merriweather_light-webfont.woff') format('woff');
            font-weight: normal;
            font-style: normal;
        }

        @font-face {
            font-family: 'merriweatherultrabold';
            src: url('../fonts/merriweather_ultrabold-webfont.woff2') format('woff2'),
                url('../fonts/merriweather_ultrabold-webfont.woff') format('woff');
            font-weight: normal;
            font-style: normal;
        }

        @font-face {
            font-family: 'merriweatherbold';
            src: url('../fonts/merriweather-bold-webfont.woff2') format('woff2'),
                url('../fonts/merriweather-bold-webfont.woff') format('woff');
            font-weight: normal;
            font-style: normal;
        }

        @font-face {
            font-family: 'merriweatherbold_italic';
            src: url('../fonts/merriweather-boldit-webfont.woff2') format('woff2'),
                url('../fonts/merriweather-boldit-webfont.woff') format('woff');
            font-weight: normal;
            font-style: normal;
        }

        @font-face {
            font-family: 'merriweatheritalic';
            src: url('../fonts/merriweather-italic-webfont.woff2') format('woff2'),
                url('../fonts/merriweather-italic-webfont.woff') format('woff');
            font-weight: normal;
            font-style: normal;
        }

        @font-face {
            font-family: 'merriweatherlight_italic';
            src: url('../fonts/merriweather-lightit-webfont.woff2') format('woff2'),
                url('../fonts/merriweather-lightit-webfont.woff') format('woff');
            font-weight: normal;
            font-style: normal;
        }

        @font-face {
            font-family: 'merriweatherregular';
            src: url('../fonts/merriweather-regular-webfont.woff2') format('woff2'),
                url('../fonts/merriweather-regular-webfont.woff') format('woff');
            font-weight: normal;
            font-style: normal;
        }

        @font-face {
            font-family: 'merriweatherultrabold_italic';
            src: url('../fonts/merriweather-ultrabdit-webfont.woff2') format('woff2'),
                url('../fonts/merriweather-ultrabdit-webfont.woff') format('woff');
            font-weight: normal;
            font-style: normal;
        }

        :root{
            --primary-white: #ffffff;
            --primary-black: #000000;
            --primary-paragrap: #111827;
        }

        *{
            padding: 0;
            margin: 0;
            border: 0;
        }

        body{
            font-size: 16px;
            line-height: 1.4;
            background: var(--primary-white);
            color: var(--primary-black);
            overflow-x: hidden;
            word-break: break-word;
            font-family: 'merriweatherregular';
        }

        html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, 
        acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, 
        sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, 
        thead, tr, th, td {
            border: 0;
            font-size: 100%;
            font-style: inherit;
            font-weight: inherit;
            margin: 0;
            outline: 0;
            padding: 0;
            vertical-align: baseline;
            font-family: 'merriweatherregular';
        }

        ol, ul{
            padding: 0;
            margin: 0;
            list-style: disc;
            padding-left: 30px;
        }

        li{
            margin-bottom: 10px;
            font-size: 14px;
        }

        strong{
            font-weight: bold;
        }

        :focus{
            outline: none;
        }

        input, textarea {
            -webkit-border-radius: 0px;
        }

        ::placeholder {
        color: var(--primary-black);;
        opacity: 1; /* Firefox */
        }

        :-ms-input-placeholder { /* Internet Explorer 10-11 */
        color: var(--primary-black);;
        }

        ::-ms-input-placeholder { /* Microsoft Edge */
        color: var(--primary-black);;
        }

        input[type="text"], input[type="email"], input[type="search"], input[type="password"], textarea {
        -moz-appearance: none !important; -webkit-appearance: none !important; appearance: none !important;
        }

        input[type="text"], input[type="email"], input[type="password"], input[type="tel"], textarea, select {
            padding: 12px 10px;
            border: 1px solid var(--primary-black);
            width: 100%;
            margin: 0 0 30px;
            background-color: var(--primary-white);
            border-radius: 5px;
            height: 50px;
            font-size: 15px;
            color: var(--primary-black);
            font-family: 'merriweatherregular';
        }

        input[type="reset"], input[type="button"], input[type="submit"], .button, button {
            color: var(--primary-black);
            display: inline-block;
            margin: 15px 0px;
            padding: 16px 38px 16px;
            -moz-appearance: none !important;
            -webkit-appearance: none !important;
            appearance: none !important;
            cursor: pointer;
            background: var(--primary-white);
            border: 0px;
            border-radius: 50px;
            font-size: 18px;
            -webkit-transition: all .3s ease;
            transition: all .3s ease;
            text-transform: uppercase;
            line-height: 1;
            letter-spacing: 1px;
            text-align: center;
            overflow: hidden;
            position: relative;
            z-index: 2;
            font-family: 'merriweatherregular';
            -webkit-box-shadow: 0px 4px 9px 0px rgba(2, 2, 2, 0.08);
            box-shadow: 0px 4px 9px 0px rgba(2, 2, 2, 0.08);
        }

        input[type="reset"]:hover, input[type="button"]:hover, input[type="submit"]:hover, .button:hover, button:hover {
            color: #fff; background: var(--primary-paragrap);
        }

        input[type="reset"]:active, input[type="button"]:active, input[type="submit"]:active {
            -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0.3);
            box-shadow: inset 0 0 0px rgba(0, 0, 0, 0.3);
        }
        a {color: var(--primary-black); text-decoration: none; cursor: pointer; font-family: 'merriweatherregular';}

        a:focus, a:active, a:hover {text-decoration: none;}

        a:hover {color: var(--primary-black);}

        figure {margin: 0; text-align: center;}

        img {max-width: 100%; height: auto; vertical-align: top;}

        p{color: var(--primary-paragrap); font-size: 14px;}

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            margin: 0px 0px 20px 0px;
            padding: 0px;
            line-height: 1.2; 
            font-family: 'merriweatherregular';
            
        }

        h1 {font-size: 28px; text-transform: uppercase;}
        h2 {font-size: 22px; text-transform: uppercase;}
        h3 {font-size: 21px;}
        h4 {font-size: 17px;}
        h5 {font-size: 16px;}
        h6 {font-size: 15px;}

        *, *:before, *:after {
            box-sizing: border-box;
            -webkit-box-sizing: border-box;
        }

        .btn.active.focus, .btn.active:focus, .btn.focus, .btn.focus:active, .btn:active:focus, .btn:focus {
            outline: none;
            color: var(--primary-white);
        }
        .btn {
            color: var(--primary-black);
            background: var(--primary-black);
            border: 1px solid var(--primary-black);
            border-radius: 0px;
            padding: 11px 55px 9px 18px;
            font-size: 16px;
            -webkit-transition: all 400ms;
            transition: all 400ms;
            margin: 0;
            position: relative;
            font-family: 'merriweatherregular';
            display: inline-flex;
            border-radius: 5px;
        }
        .btn:hover {background: var(--primary-black);  color: var(--primary-black);}

        .container {
            max-width: 1180px; 
            margin: 0 auto; 
            width: 100%;
            padding: 0 30px;
        }

        .containerfull {
            max-width: 1450px;
            margin: 0 auto;
            width: 100%;
        }

        .header__inner h1{
            text-align: center;
            font-weight: bold;
            letter-spacing: 1px;
        }

        .header__inner h2{text-align: center;}

        header {
            padding: 30px 0 0;
        }

        .header__links--main{
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0 20px;
        }

        .header__links{
            display: flex;
            align-items: center;
            gap: 0 10px;
        }

        .header__links--img{
            display: flex;
        }

        .header__links--img img{
            width: 20px;
        }

        .header__links--content p, .header__links--content a{
            font-size: 14px;
        }

        hr{
            border: 0;
            height: 1px;
            width: 100%;
            background: #26262624;
            margin: 30px 0;
        }

        .heading h3{
            padding-bottom: 15px;
            border-bottom: 1px solid #262626;
        }

        .projects__details span{
            font-weight: bold;
        }

        .projects__details p{
            margin-top: 15px;
        }

        .education ul{
            list-style: none;
            padding: 0;
        }

        .technical__skills ul{
            list-style: none;
            padding: 0;
        }

        .education .last__hr hr{
            visibility: hidden;
            margin: 0 0 10px;
        }