/*
* Author @Awais Khatab
* Project: Personal Website
*
* Browsers: Chrome (Desktop & Mobile), Safari (Desktop & Mobile), Mozilla.
*
* Copyright 2021, Awais Khatab.
* */
:root
{
    --colour-tracker: #c0b283;
    --colour-third: var(--accent-two);
    --primary-black: rgb(51, 63, 82);
    --accent-one: rgb(192, 178, 131);
    --accent-two: rgb(138, 128, 95);
    --light-grey: rgb(192, 192, 192);

    /*--FONT-FORMAT--*/
    --font-xlarge: 2.618rem;
    --lineheight-xlarge: 3.9rem;

    --font-large: 1.618rem;
    --lineheight-large: 2.5rem;

    --font-medium: 1.2rem;
    --lineheight-medium: 1.8rem;

    --font-small:1rem;
    --lineheight-small: 1.5rem;

    --font-family-primary: "Share Tech Mono", monospace;
    --font-family-secondary: "Poppins", sans-serif;

    /*--FONT-WEIGHT--*/
    --font-weight-xlarge: 700;
    --font-weight-large: 600;
    --font-weight-medium: 500;
    --font-weight-small: 400;

    /*--POPUP-STYLE--*/
    --left-offscreen: -50rem;
}
/* FONTS  */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v15/pxiEyp8kv8JHgFVrJJbecmNE.woff2) format('woff2');
    unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v15/pxiEyp8kv8JHgFVrJJnecmNE.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v15/pxiEyp8kv8JHgFVrJJfecg.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Share Tech Mono';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/sharetechmono/v10/J7aHnp1uDWRBEqV98dVQztYldFcLowEF.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Global styles */

/* Global styles */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}
html {
    scroll-behavior: smooth;
    font-family: "Share Tech Mono", monospace;
    font-size: 12px;
    -ms-overflow-style: none; /* IE and Edge */
    color: black;
    background: black;
    box-sizing: border-box;
    animation: htmlColor 1s 0.2s forwards ease-in;
    -webkit-animation: htmlColor 1s 0.2s forwards ease-in;

}
@keyframes htmlColor {
    0%{
        color: black;
        background: black;
    }
    100%{
        color: var(--primary-black);
        background: var(--primary-black);
    }
}
a {
    text-decoration: none;
    color: #e7e7e7 !important;
    font-weight: bolder;
    font-size: 15px !important;
    transition: 0.3s ease-in-out;
}
a:hover {
    text-decoration: none !important;
    font-weight: bolder;
    color: var(--accent-one) !important;
}
ul {
    list-style: none;
}
p {
    font-size: 21px;
}
img {
    width: 100%;
    max-width: 100%;
    height: auto;
}
body {
    margin: 0;
    position: relative;
    min-height: 100%;
    font-size: 21px;
    -ms-overflow-style: none; /* IE and Edge */
    cursor: url(https://cur.cursors-4u.net/cursors/cur-11/cur1054.cur), auto !important;
}
body::-webkit-scrollbar {
    display: none;
}
article{
    width: 100%;
    min-height: 100vh;
    display: block;
}
/* header */
header {
    width: 100%;
    height: 5rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
/* ----BG Particles---- */
canvas {
    display: block;
}
h2{
    font-size: 32px
}

.splashScreen{
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10001;
    background: rgb(0, 0, 0, 0);
    opacity: 1;
    animation: fadeOut 1s 1s ease-in-out forwards;
}
@keyframes fadeOut{
    0%{
        opacity: 1;
    }
    100%{
        opacity: 0;
        display: none;
        z-index: -10000;
    }
}

.loadIn {
    opacity: 0;
    transform: translateY(45px);
    transition: transform 0.6s, opacity 0.9s;
}
.load {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
}

/* SCROLL */
.scroll-tracker{
    position: fixed;
    inset: 0 0 auto;
    height: 0.4rem;
    z-index: 5;
    transform-origin: left;
    background: linear-gradient(
            135deg,
            var(--accent-one) 75%,
            var(--accent-two) 100%
    );
    background-size: 100%;
}
/* Accent Graphics */
.accent-graphic-right{
    position: absolute;
    height: 0.4rem;
    right: 0;
    width: 33%;
    background: linear-gradient(
            135deg,
            var(--accent-one) 75%,
            var(--accent-two) 100%
    );
    background-size: 100%;
}
.accent-graphic-left{
    position: absolute;
    height: 0.4rem;
    left: -5px;
    width: 33%;
    background: linear-gradient(
            135deg,
            var(--accent-one) 75%,
            var(--accent-two) 100%
    );
    background-size: 100%;}

/* Element Animation FadeIn VIEW*/
.fade-in-element {
    animation: fade-in 0.8s;
    -webkit-animation: fade-in 0.8s;
}
@keyframes fade-in {
    from {opacity: 0.1; transform: scale(.2,.2)}
    to {opacity: 1;}
}
/* === Pre-Loader --- */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 8px solid transparent;
    border-top-color: var(--accent-two);
    border-bottom-color: var(--accent-two);
    -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    z-index: 10000;
}
#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 7px solid transparent;
    border-top-color: #C0B283FF;
    border-bottom-color: #C0B283FF;
    -webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}
#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 6px solid transparent;
    border-top-color: var(--accent-two);
    border-bottom-color: var(--accent-two);
    -webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}
@-webkit-keyframes spin {
    0%   {
        -ms-transform: rotate(0deg);  /* IE 9 */
        transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -ms-transform: rotate(360deg);  /* IE 9 */
        transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
    }
}
@keyframes spin {
    0%   {
        -ms-transform: rotate(0deg);  /* IE 9 */
        transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -ms-transform: rotate(360deg);  /* IE 9 */
        transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
    }
}
#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: rgb(0, 0, 0, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    -ms-transform: translateX(0);  /* IE 9 */
    transform: translateX(0);  /* Firefox 16+, IE 10+, Opera */
}
#loader-wrapper .loader-section.section-left {
    left: 0;
}
#loader-wrapper .loader-section.section-right {
    right: 0;
}
/* Loaded */
.loaded #loader-wrapper .loader-section.section-left {
    -ms-transform: translateX(-100%);  /* IE 9 */
    transform: translateX(-100%);  /* Firefox 16+, IE 10+, Opera */

    -webkit-transition: all 1s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transition: all 1s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}
.loaded #loader-wrapper .loader-section.section-right {
    -ms-transform: translateX(100%);  /* IE 9 */
    transform: translateX(100%);  /* Firefox 16+, IE 10+, Opera */

    -webkit-transition: all 1s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transition: all 1s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}
.loaded #loader {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.loaded #loader-wrapper {
    visibility: hidden;
    -ms-transform: translateY(-100%); /* IE 9 */
    transform: translateY(-100%); /* Firefox 16+, IE 10+, Opera */
    -webkit-transition: all 0.3s 1s ease-out;
    transition: all 0.3s 1s ease-out;
}
/* JavaScript Turned Off */
.no-js #loader-wrapper {
    display: none;
}
/* GIF Control */
.gif {
    position: relative;
}
/* ---- Top-Menu (burger Menu) ----*/
.container {
    width: 100%;
    max-width: 90rem;
    min-height: 100vh;
    margin: 0 0;
    padding: 1.5rem;
}
.img-container {
    width: 100%;
    max-width: 90rem;
    margin: 0 0;
    padding: 0 1.5rem;
}
.nav-brand {
    cursor: pointer;
    z-index: 999;
    top: 0;
    left: 1rem;
    height: 2rem;
    width: 7rem;
    position: fixed;
    padding: 1rem;
    background: transparent;
}
.nav-brand a {
    font-size: xx-large !important;
}
.nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}
/* Burger Menu Button*/
.line1 {
    width: 50px;
    height: 5px;
    margin: 5px 1rem;
    background: linear-gradient(
            135deg,
            var(--accent-one) 0%,
            var(--accent-two) 100%
    );
    background-size: 100%;
}
.line2 {
    width: 50px;
    height: 3px;
    margin: 5px 1rem;
    background: linear-gradient(
            135deg,
            var(--accent-one) 0%,
            var(--accent-two) 100%
    );
    background-size: 100%;
}
.line3 {
    width: 50px;
    height: 5px;
    margin: 5px 1rem;
    background: linear-gradient(
            135deg,
            var(--accent-one) 0%,
            var(--accent-two) 100%
    );
    background-size: 100%;
}
.toggle {
    top: 0;
    right: -20px;
    z-index: 999;
    background: none;
}
.toggle .line1 {
    opacity: 0;
}
.toggle .line2 {
    width: 40px;
    opacity: 1;
}
.toggle .line3 {
    opacity: 0;
}
.burger-menu-icon {
    cursor: pointer;
    z-index: 999;
    position: fixed;
    right: 0;
    top: 0;
    background: transparent;
    padding: 1.2rem;
    border-radius: 0 0 0 40%;
}
.profile-pic {
    height: 9rem;
    width: auto;
    align-items: center;
    border-radius: 50%;
    display: flex;
    align-self: center;
    margin: 1.5rem auto;
    background: transparent;
    text-decoration: none;
}
.caption {
    display: block;
}
.center{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
}

/* POPUP CONTACT MENU */
.popup::-webkit-scrollbar {
    display: none;
}
#popup.show{
    left: 0;
    opacity: 1;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    animation: slide-left-pop 0.5s ease-in;
    -webkit-animation: slide-left-pop 0.5s ease-in;
    z-index: 9999;
}
#popup.hide{
    animation: slide-out forwards ease-in;
    -webkit-animation: slide-out forwards ease-in;
}
#popup.bgFilter{
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.popup{
    position: fixed;
    top: 0;
    display: flex;
    left: var(--left-offscreen);
    opacity: 0;
    width: 100vw;
    height: 100vh;
    background: rgb(0, 0, 0, 0);
    justify-content: center;
    align-items: center;
    overflow: scroll;
    z-index: -10;
    animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
    transition: all 1s;
    -webkit-transition: all 1s;
}
@keyframes slide-out{
    0% {
        opacity: 1;
        left: 0;
    }
    99%{
        opacity: 0;
        backdrop-filter: blur(0px);
        -webkit-backdrop-filter: blur(0px);
    }
    100% {
        z-index: -1000;
        display: none;
    }
}
@-webkit-keyframes slide-out {
    0% {
        opacity: 1;
    }
    99%{
        opacity: 0;
        backdrop-filter: blur(0px);
        -webkit-backdrop-filter: blur(0px);
    }
    100% {
        z-index: -1000;
        display: none;
    }
}
@keyframes slide-left-pop {
    0% {
        left: var(--left-offscreen);
        opacity: 0;
    }
    100% {
        left: 0;
        opacity: 1;}
}
@-webkit-keyframes slide-left-pop {
    0% {
        left: var(--left-offscreen);
        opacity: 0;
    }
    100% {
        left: 0;
        opacity: 1;
    }
}
@-moz-keyframes slide-left-pop {
    0% {
        left: var(--left-offscreen);
        opacity: 0;
    }
    100% {
        left: 0;
        opacity: 1;
    }
}
.popup h2{
    color: var(--accent-one);
}
.popup-content{
    position: absolute;
    width: 100%;
    max-width: 60vw;
    height: auto;
    color: whitesmoke;
    background: var(--primary-black);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    align-self: center;
    alignment: center;
    text-align: center;
    line-height: 1.5;
    box-shadow: 5px 5px 20px rgb(0, 0, 0, 0.35);
    -webkit-box-shadow: 5px 5px 20px rgb(0,0,0,0.35);
}
@media (max-width: 1024px) {
    .popup-content{
        min-width: 95vw;
        height: auto;
    }
}
.popup-content-icon{
    padding: 0.5rem !important;
    margin: 0;
    text-align: right;
    vertical-align: middle;
    font-size: 2rem;
}
.popup-content-text h2{
    margin-bottom: 12px;
}
.popup-content-text p{
    line-height: 1.5;
}

.popup-content-close {
    position: absolute;
    left: 14px;
    bottom: -14px;
    padding: 0.5rem;
    margin: 0 auto;
    cursor: pointer;
}
.popup-content-close:hover {
    color: var(--accent-one);
}
.popup-content-close i:hover{
    color: var(--accent-one);
}

.nav-list {
    width: 24rem;
    height: 100vh;
    background-color: #222222;
    position: fixed;
    top: 0;
    right: -26rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: start;
    z-index: 998;
    transition: all 650ms ease-in-out;
    overflow-y: auto;
    text-decoration: none;
    overflow-x: hidden; /* Hide horizontal scrollbar */
}
.nav-list.active {
    right: 0;
    overflow-x: hidden; /* Hide horizontal scrollbar */
}
.nav-item {
    margin: 0.8rem 0;
}
.nav-link {
    opacity: 0;
    font-size: 1.3rem;
    text-transform: uppercase;
    color: #cecece;
    letter-spacing: 2px;
    text-decoration: none;
}
.nav-item-profile-text{
    color: transparent !important;
    font-size: 2rem !important;
    text-decoration: none !important;
    animation: flow 5s ease-in-out infinite;
    -webkit-animation: flow 5s ease-in-out infinite;
    background: linear-gradient(
            90deg,
            var(--accent-one) 0%,
            var(--accent-two) 100%
    );
    background-size: 100%;
    -webkit-background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav-item-profile-text a{
    color: transparent !important;
    font-size: 2rem !important;
    text-decoration: none !important;
    animation: flow 5s ease-in-out infinite;
    -webkit-animation: flow 5s ease-in-out infinite;
    background: linear-gradient(
            90deg,
            var(--accent-one) 0%,
            var(--accent-two) 100%
    );
    background-size: 100%;
    -webkit-background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav-link:hover {
    color: var(--accent-one) !important;
    text-decoration: none;
}
.nav-link i {
    font-size: 2.4rem;
    text-decoration: none !important;
}
a:visited {
    text-decoration: none;
    color: #cecece;
}
@keyframes navLinkAnimate {
    from {
        opacity: 0;
        transform: translate(50px);
    }
    to {
        opacity: 1;
        transform: translate(0px);
    }
}
/* Global Buttons*/
.intro-btn {
    display: flex;
    justify-content: center;
}
.btn {
    border-radius: 1rem;
    color: #fdfdfd;
    border: 4px solid transparent;
    padding: 1.5rem 2rem;
    display: inline-block;
    margin: 2rem 0.5rem 2rem;
    font-weight: 500;
    letter-spacing: 2px;
    background: var(--primary-black);
    box-shadow: 0 20px 30px 0 rgb(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 20px 30px 0 rgb(0, 0, 0, 0.2);
    width: 20rem;
    min-width: 12rem;
    text-align: -webkit-center;
}
.btn:hover {
    color: #fdfdfd;
    border-color: whitesmoke;
    transform: translateY(5px);
    background: transparent;
}
button {
    height: 50px;
    padding: 0 30px;
    border-radius: 1rem;
    cursor: pointer;
    z-index: 3;
    color: #efefef;
    border: solid 4px transparent;
    background-image: linear-gradient(rgb(255, 255, 255, 0), rgb(255, 255, 255, 0)),
    -webkit-linear-gradient(45deg, var(--accent-one) 0%, var(--accent-two) 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;
    box-shadow: 2px 1000px 1px rgb(0, 0, 0, 0.1) inset;
    background-color: rgb(0, 0, 0, 0.16);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}
button:hover {
    box-shadow: 0 10px 10px -10px rgb(28, 28, 28, 0.5);
    transform: translateY(5px);
    background: -webkit-linear-gradient(45deg, var(--accent-one) 0%, var(--accent-two) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 4px solid whitesmoke; }

.static-contact-button{
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    margin: 2px;
    z-index: 2;
    width: 60px;
    height: 60px;
    border: solid 4px rgba(192, 178, 131, 0.8);
    color: transparent;
    background-color: linear-gradient(rgb(255, 255, 255, 0), rgb(255, 255, 255, 0)),
    -webkit-linear-gradient(45deg, var(--accent-one) 0%, var(--accent-two) 100%);
    display: flex;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 2px;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}
.static-contact-button:hover{
    background: transparent;
    transition: all 0.5s ease-in-out;
    border: #fafafa solid 4px;
}
.static-contact-button i{
    font-size: 2rem;
    color: #fafafa;
    text-decoration: none !important;
    opacity: 1;
}
.static-contact-button:hover i{
    color: var(--accent-one) !important;
    text-decoration: none !important;
}
@keyframes glow {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}
@media (max-width: 1024px) {
    .popup-content{
        min-width: 95vw;
        height: auto;
    }
}
.typed-text{
    color: var(--light-grey) !important;
}
/* Landing Page */
.landing-page {
    background: rgb(12, 12, 12, 1);
    position: relative;
    width: 100%;
    display: flex;
    min-height: 100vh;
    max-width: 100vw;
    margin: auto;
    padding-top: 5rem;
    align-content: center;
    align-items: center;
    align-self: center;
    alignment: center;
    justify-content: center;
    z-index: -1;
    animation: fade-in-normal 2s forwards;
    -webkit-animation: fade-in-normal 2s forwards;
}
.main-message {
    align-items: center;
    display: block;
    position: relative;
    margin: 0 auto;
    padding: 4px;
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
    color: var(--accent-one);
    letter-spacing: 2px;
}
.main-message img {
    border-radius: 100%;
    align-content: center;
    align-self: center;
    border-bottom: black 20rem;
    height: 20rem;
    width: auto;
    background: linear-gradient( 145deg, var(--accent-one), var(--accent-two));
    background-size: 100%;
    -webkit-background-size: 200%;
    padding: 0.4rem 0.4rem 0.4rem 0.4rem;
    user-select: none;
}
@keyframes fade-in-normal {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.main-message h1 {
    letter-spacing: 0.3rem;
    font-size: 2rem;
    font-weight: 400;
    overflow: hidden;
    white-space: nowrap;
    width: 20ch;
    margin: auto;
    color: #e7e7e7;
    border: transparent 10px;
}
.main-message h2 {
    color: #e7e7e7;
    letter-spacing: 1rem;
    font-size: 3rem;
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
    animation: typing 7s steps(22), blink 1s ease-in-out 7s infinite;
    -webkit-animation: typing 7s steps(22), blink 1s ease-in-out 7s infinite;
    animation-delay: 1.5s;
    -webkit-animation-delay: 1.5s;
    width: 21ch;
    transform: translateX(2rem);
    margin: auto;
    border-right: 4px solid rgba(255, 255, 255, 1);
    padding-bottom: 8px;
}
.main-message h3 {
    color: var(--accent-one);
    font-size: 4rem;
    font-weight: bold;
    margin: 1rem 0;
    padding-bottom: 21px;
}
.main-message p {
    color: var(--light-grey);
    text-transform: none;
    font-size: 21px;
    font-weight: 600;
}
.first-scroll-down{
    z-index: 0;
    width: 100%;
    top: calc(100vh - 19px);
    height: 100px;
    display: flex;
    position: absolute;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.scroll-down i {
    color: rgba(192, 178, 131, 0.4);
    transition: all 350ms ease;
    margin-left: auto;
    margin-right: auto;
    padding-top: 4rem;
    font-size: 3rem;
    scroll-behavior: smooth;
    animation: fadeIn-btn ease-in-out 2s infinite;
    -webkit-animation: fadeIn-btn ease-in-out 2s infinite;
    z-index: 5;
}
.scroll-down i:hover {
    color: var(--accent-one);
    opacity: 1;
    animation: step-end;
    -webkit-animation: step-end;
    transition: all 0.3s ease-in-out;
    z-index: 5;
}

.arrow-container{
    width: 100px;
    height: 100px;
    margin: 0 auto;
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
}
.arrow-1{
    width: 100px;
    height: 100px;
    background: var(--accent-one);
    opacity: 0.5;
    border-radius: 50%;
    position: absolute;
}
.arrow-2{
    width: 60px;
    height: 60px;
    background: var(--accent-two);
    border-radius: 50%;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
    display: table;
}
.arrow-2:before{
    width: 52px;
    height: 52px;
    content: "";
    border: 2px solid var(--accent-two);
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
}
.arrow-2 i.fa{
    font-size: 30px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    color: var(--primary-black);
}
/* Custom Animate.css */
.animated.hinge {
    -webkit-animation-duration: 2s !important;
    animation-duration: 2s !important;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}
@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(.4, .4, .4);
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 0;
    }
}
@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(.4, .4, .4);
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 0;
    }
}
.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

@keyframes typing {
    75% {
        width: 0;
        color: var(--accent-two);
    }
    100% {width: 21ch;}
}
@-webkit-keyframes typing {
    75% {
        width: 0;
        color: var(--accent-two);
    }
    100% {width: 21ch;}
}
@-moz-keyframes typing {
    75% {
        width: 0;
        color: var(--accent-two);
    }
    100% {width: 21ch;}
}
@keyframes blink {
    0% {border-right: 4px solid rgba(255, 255, 255, 0);}
    100% {border-right: 4px solid rgb(194, 194, 194);}
}
@-webkit-keyframes blink {
    0% {border-right: 4px solid rgba(255, 255, 255, 0);}
    100% {border-right: 4px solid rgb(194, 194, 194);}
}
@-moz-keyframes blink {
    0% {border-right: 4px solid rgba(255, 255, 255, 0);}
    100% {border-right: 4px solid rgb(194, 194, 194);}
}
@keyframes  flow{
    0% {background-position: 0 100%}
    50%{background-position: 100% 50%}
    100%{background-position: 0 100%}
}
@-webkit-keyframes  flow{
    0% {background-position: 0 50%}
    50%{background-position: 100% 50%}
    100%{background-position: 0 50%}
}
@-moz-keyframes  flow{
    0% {background-position: 0 50%}
    50%{background-position: 100% 50%}
    100%{background-position: 0 50%}
}
@keyframes fadeIn-btn {
    0% {opacity: 1;}
    50% {opacity: 0.3;}
    100% {opacity: 1;}
}
@-webkit-keyframes fadeIn-btn {
    0% {opacity: 1;}
    50% {opacity: 0.3;}
    100% {opacity: 1;}
}
@-moz-keyframes fadeIn-btn {
    0% {opacity: 1;}
    50% {opacity: 0.3;}
    100% {opacity: 1;}
}
/* Welcome/About */
.about {
    width: 100%;
    min-height: 100vh;
    max-width: 80rem;
    margin: auto;
}
.about .container {
    padding-top: 3rem;
    display: flex;
    align-items: center;
    min-height: 100vh;
}
.about-img img {
    z-index: 1;
    border-radius: 19%;
    align-content: center;
    margin: 6rem;
    height: 16rem;
    width: auto;
    background: linear-gradient(145deg, var(--accent-one), var(--accent-two)) center;
    padding: 0.6rem 0.6rem 0.6rem 0.6rem;
    animation: flow 5s ease-in-out infinite;
    -webkit-animation: flow 5s ease-in-out infinite;
    background-size: 200%;
}
.about-img-bg img{
    z-index: -1;
    opacity: 0.6;
    border-radius: 19%;
    align-content: center;
    position: relative;
    margin-top: -16rem;
    right: 3rem;
    height: 14rem;
    width: 14rem;
    background: linear-gradient(145deg, var(--accent-one), var(--accent-two)) center;
    padding: 0.6rem 0.6rem 0.6rem 0.6rem;
    animation: flow 6s ease-in-out infinite;
    -webkit-animation: flow 6s ease-in-out infinite;
    background-size: 200%;
    -webkit-background-size: 200%;
}
.about-text-box {
    margin-top: 1rem;
    left: 0;
    width: 100%;
    padding: 0.4rem;
    flex-grow: 1;
    flex-basis: 0;
    margin-bottom: 1rem;
}
.about-text-box h2 {
    color: #e7e7e7;
    left: 0;
    font-size: 32px;
    margin-bottom: 20px;
}
.about-text-box div {
    color: #e7e7e7;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    left: 0;
    padding: 0;
    font-weight: normal;
    margin-bottom: 1.45rem;
    word-break: break-word;
}
.about-scroll-down {
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    left: 50%;
}
/* Education */
.education {
    padding: 1.5rem 0;
    max-width: 90rem;
    margin: auto;
}
.education-heading {
    text-align: center;
    margin: 1rem auto;
}
.education-heading h2 {
    color: #e7e7e7;
    font-size: 38px;
    font-weight: bolder;
    padding: 1rem;
    margin-left: auto;
    margin-right: auto;
}
.education-tier {
    display: flex;
}
.education-img{
    margin: 0;
}
.education-img img{
    position: relative;
    align-content: center;
    justify-content: center;
    padding: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
    box-shadow: 0 20px 30px 0 rgb(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 20px 30px 0 rgb(0, 0, 0, 0.2);
}
/* experience */
.experience {
    padding: 1.5rem 0;
    min-height: 100vh;
    max-width: 90rem;
    margin: auto;
}
.title-heading {
    color: #e7e7e7;
    text-align: center;
    margin-bottom: 4rem;
    padding: 1rem;
}
.title-heading h2 {
    color: #e7e7e7;
    font-size: 38px;
    font-weight: bolder;
    margin: 0.5rem 0 0.5rem 0;
}
.title-heading p {
    color: #e7e7e7;
    font-family: "Poppins", sans-serif;
    margin-bottom: 5rem;
}
.experience-tiers {
    height: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2rem;
}
.experience-img img{
    position: relative;
    align-content: center;
    justify-content: center;
    width: 100%;
    height: auto;
}
.tier-item {
    max-height: 50rem;
    padding: 1rem;
    position: relative;
    display: inline-grid;
    flex-direction: column;
}
.tier-item i{
    font-size: 32px;
    margin-bottom: 1rem;
}
.tier-item h2 {
    position: relative;
    font-size: 28px;
    padding: 0;
    font-weight: bold;
    animation: flow 5s ease-in-out infinite;
    -webkit-animation: flow 5s ease-in-out infinite;
    background: linear-gradient(
            to right,
            var(--accent-one) 0%,
            var(--accent-two) 100%
    );
    background-size: 200%;
    -webkit-background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.tier-item p {
    color: var(--light-grey) !important;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: normal;
    line-height: 1.5em;
    text-align: justify-all;
    word-break: break-word;
    padding: 1rem;
}
/* SKills Exp */
.skills {
    padding: 1.5rem 0;
    max-width: 90rem;
    margin-bottom: 4rem;
    align-content: center;
    place-items: center;
}
.skills-heading {
    text-align: center;
    word-break: break-word;
    margin-top: 8rem;
    margin-bottom: 2rem;
}
.skills-heading h2 {
    color: #e7e7e7;
    font-size: 38px;
    font-weight: bolder;
    padding: 1rem;
}
.skills-tier {
    display: flex;
}
.skills-img img{
    position: relative;
    align-content: center;
    justify-content: center;
    width: 100%;
    height: auto;
    margin-bottom: 12rem;
}
.skills-container{
    display: flex;
    flex-direction: column;
    place-items: center;
    background: transparent;
    gap: 2rem;
}
/* Skills Bar - Programming Experience Section*/
.skill-bars {
    padding: 25px 30px;
    width: 90%;
    background: transparent;
    box-shadow: 5px 5px 20px rgba(0,0,0,0.2);
    -webkit-box-shadow: 5px 5px 20px rgba(0,0,0,0.2);
    border-radius: 1rem;
}
.skill-bars .bar {
    margin: 20px 0;
}
.skill-bars .bar:first-child {
    margin-top: 0;
}
.skill-bars .bar .info {
    margin-bottom: 5px;
    color: #e7e7e7;

}
.skill-bars .bar .info {
    font-weight: 500;
    font-size: 2.5rem;
    opacity: 1;
}
.skill-bars .bar .progress-line{
    height: 30px;
    width: 100%;
    background: transparent;
    position: relative;
    transform: scaleX(0);
    transform-origin: left;
    border-radius: 10px;
    animation: animate 1s 1s cubic-bezier(1,0,0.5,1) forwards;
    -webkit-animation: animate 1s 1s cubic-bezier(1,0,0.5,1) forwards;
}
.bar .progress-line span {
    height: 100%;
    position: absolute;
    border-radius: 10px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(
            135deg,
            var(--accent-one) 0%,
            var(--accent-two) 100%
    );
    background-size: 100%;
    -webkit-background-size: 100%;
    animation: animate 0.5s 0.5s cubic-bezier(1,0,0.5,1) forwards;
    -webkit-animation: animate 0.5s 0.5s cubic-bezier(1,0,0.5,1) forwards;
}
.bar .progress-line.Java span{
    width: 70%;
    animation-play-state: paused;
    -webkit-animation-play-state: paused;
    animation-delay: 0.4s;
    -webkit-animation-delay: 0.4s;
}
.bar .progress-line.JavaScript span {
    width: 100%;
    animation-play-state: paused;
    -webkit-animation-play-state: paused;
    animation-delay: 0.6s;
    -webkit-animation-delay: 0.6s;
}
.bar .progress-line.CPlusPlus span {
    width: 40%;
    animation-play-state: paused;
    -webkit-animation-play-state: paused;
    animation-delay: 0.9s;
    -webkit-animation-delay: 0.9s;
}
.bar .progress-line.Python span {
    width: 60%;
    animation-play-state: paused;
    -webkit-animation-play-state: paused;
    animation-delay: 1.2s;
    -webkit-animation-delay: 1.2s;
}
.bar .progress-line.Swift span {
    width: 40%;
    animation-play-state: paused;
    -webkit-animation-play-state: paused;
    animation-delay: 1.5s;
    -webkit-animation-delay: 1.5s;
}
@keyframes animate {
    0%{transform: scaleX(0)}
    100%{transform: scaleX(1)}
}
@-webkit-keyframes animate {
    0%{transform: scaleX(0)}
    100%{transform: scaleX(1)}
}
@-moz-keyframes animate {
    0%{transform: scaleX(0)}
    100%{transform: scaleX(1)}
}
/* Frameworks Section*/
.framework-left {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    opacity: 0;
    padding: 0.8rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: hidden forwards;
    -webkit-animation: hidden forwards;
}
.framework-right {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    opacity: 0;
    padding: 0.8rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8rem;
    animation: hidden forwards;
    -webkit-animation: hidden forwards;
}
.framework-left img {
    padding: 1rem;
    width: 512px;
    height: auto;
}
.framework-right img {
    padding: 1rem;
    width: 512px;
    height: auto;
}
@keyframes hidden{
}
@-webkit-keyframes hidden{
}
@-moz-keyframes hidden{
}
@keyframes slide-left-pause {
    0% {
        left: -26rem;
        opacity: 0;
    }
    100% {
        left: 0;
        opacity: 1;}
}
@-webkit-keyframes slide-left-pause {
    0% {
        left: -26rem;
        opacity: 0;
    }
    100% {
        left: 0;
        opacity: 1;
    }
}
@-moz-keyframes slide-left-pause {
    0% {
        left: -26rem;
        opacity: 0;
    }
    100% {
        left: 0;
        opacity: 1;
    }
}
@keyframes slide-right-pause {
    0% {right: -26rem;}
    0% {opacity: 0;}
    100% {right: 0;}
    100% {opacity: 1;}
}
@-webkit-keyframes slide-right-pause {
    0% {right: -26rem;}
    0% {opacity: 0;}
    100% {right: 0;}
    100% {opacity: 1;}
}
@-moz-keyframes slide-right-pause {
    0% {right: -26rem;}
    0% {opacity: 0;}
    100% {right: 0;}
    100% {opacity: 1;}
}
/* Projects */
.projects {
    padding: 3rem 0;
    min-height: 50vh;
    max-width: 85rem;
    margin: auto;
}
.has-margin-right {
    margin: 0 3rem 0 0;
}
.has-margin-left {
    float: left;
}

.container-projects {
    display: flex;
    overflow-x: auto;
}

.project-item {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 1px;
    margin: 0 auto;
}
.project-img {
    flex: 1;
    position: relative;
    max-width: 600px;
    align-content: center;
    padding: 1rem;
    margin: 0 auto;
    box-shadow: 5px 5px 20px rgb(0, 0, 0, 0.35);
    -webkit-box-shadow: 5px 5px 20px rgb(0,0,0,0.35);
    border-radius: 1.2rem;
}
.project-img img{
    border-radius: 1rem;
    box-shadow: 5px 5px 20px rgb(0, 0, 0, 0.35);
    -webkit-box-shadow: 5px 5px 20px rgb(0,0,0,0.35);
    height: auto;
    margin: 0;
    animation: fade-in-img 1s ease-in;
    -webkit-animation: fade-in-img 1s ease-in;
}
.project-img-gif{
    flex: 1;
    position: relative;
    align-content: center;
    padding: 2rem;
    box-shadow: 5px 5px 20px rgb(0, 0, 0, 0.35);
    -webkit-box-shadow: 5px 5px 20px rgb(0,0,0,0.35);
    border-radius: 1.2rem;
}
.project-img-gif img{
    border-radius: 1rem;
    box-shadow: 5px 5px 20px rgb(0, 0, 0, 0.35);
    -webkit-box-shadow: 5px 5px 20px rgb(0,0,0,0.35);
    width: 100%;
    height: auto;
    animation: fade-in-img 1s ease-out;
    -webkit-animation: fade-in-img 1s ease-in;
}
@keyframes fade-in-img {
    0% {opacity: 0}
    100%{opacity: 1}
}
@-webkit-keyframes fade-in-img {
    0% {opacity: 0}
    100%{opacity: 1}
}
@-moz-keyframes fade-in-img {
    0% {opacity: 0}
    100%{opacity: 1}
}
.project-description {
    flex: 1;
    margin: 0 auto;
    max-width: 600px;
}
.project-description h2 {
    font-size: 28px;
    font-weight: bold;
    margin: 2rem 0;
    background: linear-gradient(
            to right,
            var(--accent-one) 0%,
            var(--accent-two) 100%
    );
    background-size: 100%;
    -webkit-background-size: 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.project-description p {
    color: var(--light-grey) !important;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: normal;
    text-align: justify-all;
    line-height: 1.5em;
    word-break: break-word;
}
.project-link {
    display: inline-block;
    margin: 2rem 0;
    font-size: 1.4rem;
}
.project-link i{
    font-size: 24px;
}
.project-link a:hover {
    color: var(--accent-one);
    text-decoration: none !important;
    transform: translateY(3px);
}
.project-link i:hover {
    color: var(--accent-one);
    text-decoration: none !important;
    transform: translateY(3px);
}
/* Research */
.research-item {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 0 1.45rem 5rem 1.45rem;
}
.research-description {
    flex: 1;
    margin: 0 auto;
    max-width: 800px;
}
.research-description h2 {
    font-size: 28px;
    font-weight: bold;
    margin: 2rem 0;
    background: linear-gradient(
            to right,
            var(--accent-one) 0%,
            var(--accent-two) 100%
    );
    background-size: 100%;
    -webkit-background-size: 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.research-description p {
    color: var(--light-grey) !important;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: normal;
    text-align: justify-all;
    line-height: 1.5em;
    word-break: break-word;
}
.research-link{
    display: inline-block;
    font-size: 1rem;
    text-align: center;
}

/* Contact */
.react-img-circle{
    position: relative;
    align-items: center;
    align-self: center;
    align-content: center;
    width: 300px;
    padding: 1.5rem;
    margin: 2rem;
    transition: 0.5s ease-in-out;
    background: transparent;
    border: 4px solid transparent;
    border-radius: 1rem;
}
.react-img-circle:hover{
    background: var(--accent-two);
    border-color: whitesmoke;
    transition: 0.5s ease-in-out;
    transform: translateY(5px);
}
.react-img{
    position: relative;
    align-items: center;
    align-self: center;
    align-content: center;
    width: 300px;
    padding: 1.5rem;
    margin: 2rem;
    transition: 0.5s ease-in-out;
    background: transparent;
    border: 4px solid transparent;
    border-radius: 1rem;
}
.react-img:hover{
    background: var(--accent-two);
    border-color: whitesmoke;
    transition: 0.5s ease-in-out;
    transform: translateY(5px);
}

.contact {
    width: 100%;
    min-height: 100vh;
    max-width: 70rem;
    margin: auto;
    padding-top: 1rem;
    align-content: center;
    align-items: center;
    align-self: center;
    alignment: center;
}
.contact h2 {
    color: #e7e7e7;
    text-align: center;
    font-size: 2.5rem;
    font-weight: bolder;
    margin-bottom: 1rem;
}
.contact p {
    color: var(--light-grey);
    font-family: "Poppins", sans-serif;
    font-size: 1.4rem;
    padding: 0;
    margin: 0.9rem 2rem;
    text-align: justify;
}
.contact a {
    font-size: 1.8rem;
    text-decoration: none;
}
.contact a:hover {
    color: var(--accent-one);
    text-decoration: none
}
.contact .container {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}
.email-link {
    transition: 0.5s ease-in-out;
}
.email-link:hover{
    color: #00ffbd;
    transition: 0.5s ease-in-out;
    transform: translateY(5px);
}
/* Footer */
.footer-container {
    position: relative;
    min-height: 100vh;
}
.footer-content-wrap {
    padding-bottom: 2.5rem; /* Footer height */
}
footer {
    height: 2.5rem;
    width: 100%;
    color: var(--light-grey);
    text-align: center;
    font-size: 1.2rem;
    justify-content: space-evenly;
    bottom: 0;
}
.footer-nav a {
    color: #e7e7e7;
    font-size: 1.4rem;
    margin: 0 0.2rem;
    padding: 0.5rem;
    line-height: 2.5rem;
    text-decoration: none !important;
}
.footer-nav a:hover {
    margin: 0 0.2rem;
}
.footer-coded-by p {
    color: #e7e7e7;
    text-align: center;
    margin: 1.5rem;
    text-decoration: none !important;
}
.footer-social a, i {
    color: #e7e7e7;
    margin: 2rem 0.5rem;
    font-size: 2.5rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
}
.footer-social a:hover {
    color: var(--accent-one);
    text-decoration: none !important;
    transform: translateY(3px);
}
.footer-social i:hover {
    color: var(--accent-one);
    text-decoration: none !important;
    transform: translateY(3px);
}
.fa-code{
    font-size: 18px;
}
.studiopancake-logo{
    position: relative;
    width: 120px;
    padding: 8px 0 0 0;
    margin: 0.5rem;
    transition: 0.5s ease-in-out;
}
.studiopancake-logo:hover{
    cursor: pointer;
    transition: 0.5s ease-in-out;
    transform: translateY(5px);
}
/* ---- particles.js container ---- */
#particles-js {
    position: absolute;
    width: 100vw;
    left:0;
    z-index: auto;
    height: 100vh;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}

/* Blog Page */
.blog {
    width: 100%;
    min-height: 100vh;
    max-width: 80rem;
    margin: auto;
}
.blog .container {
    padding-top: 8rem;
    display: flex;
    align-items: center;
    align-content: center;
    min-height: 80vh;
}
.blog-img img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: auto;
    padding: 2rem;
}
.blog-icons-img img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
    height: auto;
}
.blog-text-box {
    margin-top: 1rem;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
    margin-bottom: 4rem;
}
.blog-text-box h2 {
    align-content: center;
    text-align: center;
    font-size: 4rem;
    margin-bottom: 20px;
    padding: 2rem;
}
.blog-text-box div{
    font-family: "Poppins", sans-serif;
    font-size: 21px;
    padding: 0;
    font-weight: 400;
    margin-bottom: 1.45rem;
    word-break: break-word;
}
.blog-text-box p{
    font-family: "Poppins", sans-serif;
    font-size: 21px;
    padding: 0;
    text-align: justify;
    font-weight: 400;
    margin-bottom: 1.45rem;
    word-break: break-word;
}

/* Responsive Design */
@media (max-width: 1024px){
    .burger-menu-icon {
        right: 1rem;
        top: 0;
    }
    .main-message img{
        left: 52.5%;
        height: 24rem;
    }
}
@media (max-width: 770px) {
    .project-img {
        width: calc(93vw);
    }
    .project-description{
        width: calc(93vw);
    }
    .nav-brand a {
        font-size: xx-large !important;
    }
    .burger-menu-icon {
        right: 2rem;
        top: 0;
    }
    .main-message img {
        top: -50%;
        height: 16rem;
        left: 50%;
    }
    .main-message h1 {
        font-size: 2.4rem;
    }
    .main-message h2 {
        letter-spacing: 0.8rem;
        font-size: 2.8rem;
        font-weight: 800;
        animation: typing 7s steps(16), blink 1s ease-in-out 7s infinite;
        -webkit-animation: typing 7s steps(16), blink 1s ease-in-out 7s infinite;
        animation-delay: 4s;
        -webkit-animation-delay: 4s;
        width: 22ch;
        transform: translateX(1.5rem);
    }
    .main-message h3 {
        font-size: 3.8rem;
    }
    @keyframes typing {
        75% {
            width: 0;
            color: var(--accent-two);
        }
        100% {width: 23ch;}
    }
    .about .container {
        flex-direction: column;
    }
    .about-text-box {
        margin-bottom: 5rem;
    }
    .about-img img {
        height: 14rem;
        width: auto;
    }
    .about-img-bg img{
        height: 14rem;
        width: auto;
    }
    p {
        font-size: 1.3rem;
    }
    .title-heading {
        margin: 0;
    }
    .education-img img{
        margin-bottom: 10rem;
    }
    .tier-item p {
        font-family: "Poppins", sans-serif;
        font-size: 1.4rem;
        text-align: left;
        word-break: break-word;
    }
    .experience-tiers {
        gap: 0;
    }
    .skill-bars{
        padding: 25px 30px;
        width: calc(95vw);
        background: transparent;
        box-shadow: 5px 5px 20px rgba(0,0,0,0.2);
        border-radius: 10px;
    }
    .skill-bars .bar .progress-line{
        height: 17px;
        width: 100%;
        background: transparent;
        position: relative;
        transform: scaleX(0);
        transform-origin: left;
        border-radius: 10px;
        animation: animate 1s 1s cubic-bezier(1,0,0.5,1) forwards;
        -webkit-animation: animate 1s 1s cubic-bezier(1,0,0.5,1) forwards;
    }
    .framework-left {
        gap: 0;
    }
    .framework-right {
        gap: 0;
    }
    .framework-left img {
        width: 512px;
        min-width: 80%;
        min-height: 80%;
        height: auto;
    }
    .framework-right img {
        width: 512px;
        min-width: 80%;
        min-height: 80%;
        height: auto;
    }
    .burger-menu-icon {
        right: 2rem;
        top: 0;
    }
}
@media (max-width: 665px) {
    .line1 {
        width: 30px;
        height: 3px;
        margin: 5px 0;
        animation: flow 10s ease-in-out infinite;
        -webkit-animation: flow 10s ease-in-out infinite;
        background: linear-gradient(
                135deg,
                var(--accent-one) 0%,
                var(--accent-two) 100%
        );
        background-size: 200%;
    }
    .line2 {
        width: 30px;
        height: 3px;
        margin: 0;
        animation: flow 10s ease-in-out infinite;
        -webkit-animation:flow 10s ease-in-out infinite;
        background: linear-gradient(
                135deg,
                var(--accent-one) 0%,
                var(--accent-two) 100%
        );
        background-size: 200%;
    }
    .line3 {
        width: 30px;
        height: 3px;
        margin: 5px 0;
        animation: flow 10s ease-in-out infinite;
        -webkit-animation: flow 10s ease-in-out infinite;
        background: linear-gradient(
                135deg,
                var(--accent-one) 0%,
                var(--accent-two) 100%
        );
        background-size: 200%;
    }
    .main-message img{
        top: -50%;
        height: 16rem;
        left: 50%;
    }
    .main-message h1{
        font-size: 1.8rem;
    }
    .main-message h2 {
        letter-spacing: 0.6rem;
        font-size: 2rem;
        animation-delay: 4s;
        -webkit-animation-delay: 4s;
    }
    .main-message h3 {
        font-size: 3rem;
    }
    .main-message p {
        font-size: 1.3rem;
    }
    .btn {
        border-radius: 0.9rem;
        padding: 0.9rem 0.9rem;
    }
    .about-text-box {
        height: 100vh;
    }
    .about-text-box h2 {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    .about-text-box p {
        margin: 0 0 2.45rem;
    }
    .skill-bars{
        padding: 25px 30px;
        width: 95vw;
        background: transparent;
        box-shadow: 5px 5px 20px rgba(0,0,0,0.2);
        -webkit-box-shadow: 5px 5px 20px rgba(0,0,0,0.2);
        border-radius: 10px;
    }
    .title-heading h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .title-heading p {
        font-size: 1.3rem;
    }
    .contact .container {
        flex-direction: column;
    }
    footer,
    footer p {
        font-size: 1.2rem;
    }
    .research-item h2{
        font-size: 1.5rem;
    }
    .research-description p{
        font-size: 1rem !important;
    }
    .popup-content {
        text-align: left;
    }
    .popup-content h2 {
        font-size: 2rem;
    }
    .popup-content p {
        font-size: 1.3rem;
    }
}
@media (max-width: 480px){
    .line1 {
        width: 30px;
        height: 3px;
        margin: 5px 0;
        animation: flow 10s ease-in-out infinite;
        -webkit-animation: flow 10s ease-in-out infinite;
        background: linear-gradient(
                135deg,
                var(--accent-one) 0%,
                var(--accent-two) 100%
        );
        background-size: 100%;
    }
    .line2 {
        width: 30px;
        height: 3px;
        margin: 0;
        animation: flow 10s ease-in-out infinite;
        -webkit-animation:flow 10s ease-in-out infinite;
        background: linear-gradient(
                135deg,
                var(--accent-one) 0%,
                var(--accent-two) 100%
        );
        background-size: 100%;
    }
    .line3 {
        width: 30px;
        height: 3px;
        margin: 5px 0;
        animation: flow 10s ease-in-out infinite;
        -webkit-animation: flow 10s ease-in-out infinite;
        background: linear-gradient(
                135deg,
                var(--accent-one) 0%,
                var(--accent-two) 100%
        );
        background-size: 100%;
    }
    .burger-menu-icon {
        right: 1rem;
        top: 0;
    }
    .main-message img{
        height: 16rem;
        width: auto;
        left: 50%;
    }
    .main-message h1 {
        font-size: 1.4rem;
        font-weight: 600;
    }
    .scroll-down{
        font-size: 10px;
    }
    .main-message h2 {
        letter-spacing: 0.6rem;
        font-size: 1.8rem;
        animation-delay: 4s;
        -webkit-animation-delay: 4s;
        padding-bottom: 3px;
    }
    .main-message h3 {
        font-size: 32px;
        padding-bottom: 5px;
    }
    .main-message p {
        font-size: 12px;
        font-weight: 600;
    }

    .about .container {
        display: flex;
        width: 100vw;
        margin: 0;
        align-items: center;
    }
    .about-text-box {
        height: 100vh;
    }

    .about-text-box h2 {
        color: #e7e7e7;
        left: 0;
        font-size: 28px;
    }
    .about-text-box div {
        color: #e7e7e7;
        font-family: "Poppins", sans-serif;
        font-size: 16px;
        padding: 0;
        font-weight: normal;
        word-break: break-word;
    }
    .about-img img {
        height: 12rem;
        width: auto;
    }
    .about-img-bg img{
        height: 12rem;
        width: auto;
    }
    .education-heading h2 {
        font-size: 32px;
        font-weight: 600;
    }
    .education-img img{
        width: 100%;
        padding: 2px;
        margin: 1px;
    }
    .experience-tiers h2 {
        font-size: 28px;
        font-weight: bolder;
    }
    .title-heading h2 {
        font-size: 32px;
        font-weight: 600;
    }
    .skill-bars{
        padding: 25px 30px;
        width: calc(98vw - 4px);
        background: transparent;
        box-shadow: 5px 5px 20px rgba(0,0,0,0.2);
        -webkit-box-shadow: 5px 5px 20px rgba(0,0,0,0.2);
        border-radius: 10px;
    }
    .skill-bars span{
        font-size: 24px;
        font-weight: 500;
    }
    .skills-heading h2 {
        font-size: 32px;
        padding: 1rem;
    }
    .projects{
        max-width: 99vw;
        left: 0;
    }
    .project-description{
        padding: 15px 5px 5px;
    }
    .project-description h2 {
        font-size: 21px;
        font-weight: 600;
        padding: 1px;
        margin: 1px;
    }
    .project-description p {
        font-size: 14px;
        font-weight: 500;
        padding: 1px;
        margin: 1px;
    }
    p{
        font-size: 16px;
    }
    .tier-item i{
        font-size: 24px !important;
    }
    i{
        font-size: 32px;
    }
    .contact p {
        font-size: 1.25rem;
    }
    .contact h2{
        font-size: 1.6rem !important;
    }
    .email-link{
        font-size: 1.25rem;
    }
    button{
        font-size: 1.25rem;
        height: 40px;
    }
    .react-img-circle{
        width: 60vw;
    }
    .react-img{
        width: 60vw;
    }
}
@media (max-width: 440px) {
    .main-message img {
        top: -35%;
        height: 12rem;
        left: 50%;
    }
    .main-message h3 {
        font-size: 28px;
    }
}
@media (max-width: 320px) {
    .main-message h3 {
        font-size: 23px;
    }
}
