.text-focus-in {
	-webkit-animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	        animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}
 @-webkit-keyframes text-focus-in {
    0% {
      -webkit-filter: blur(12px);
              filter: blur(12px);
      opacity: 0;
    }
    100% {
      -webkit-filter: blur(0px);
              filter: blur(0px);
      opacity: 1;
    }
  }
  @keyframes text-focus-in {
    0% {
      -webkit-filter: blur(12px);
              filter: blur(12px);
      opacity: 0;
    }
    100% {
      -webkit-filter: blur(0px);
              filter: blur(0px);
      opacity: 1;
    }
  }
  .color-change-5x {
	-webkit-animation: color-change-5x 3s linear  alternate both;
	        animation: color-change-5x 3s linear  alternate both;
}
 @-webkit-keyframes color-change-5x {
    0% {
      background: #19dcea;
    }
    25% {
      background: #b22cff;
    }
    50% {
      background: #ea2222;
    }
    75% {
      background: #f5be10;
    }
    100% {
      background: #fffff;
    }
  }
  @keyframes color-change-5x {
    0% {
      background: #19dcea;
    }
    25% {
      background: #b22cff;
    }
    50% {
      background: #ea2222;
    }
    75% {
      background: #f5be10;
    }
    100% {
      background: #fffff;
    }
  }
  
html {
    transition: background 1s;
}
body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}
h2 {
    font-family: 'Patua One', cursive !important;
}
h1, h2 {
    margin: 0;
}
#name-heading {
    font-size: 5rem;
    font-family: 'Patua One', cursive;
    font-weight: 400;
    transition: font-size 0.5s
}
#name-subheading {
    font-size: 2rem;
    font-weight: 300;
    transition: font-size 0.5s;
    font-family: 'Inconsolata', monospace;
}
.about-me {
    font-family: 'Inconsolata', monospace;
    visibility: hidden;
    line-height: 1.4;
    text-align: justify;
    width: 80%;
    margin: 0 auto;
    padding-top: 5vh;
    opacity: 0;
    height: 0;
    font-size: 0.5rem;
    transition: font-size 0.5s, height 0.5s, opacity 0.5s;
}
.about-switched-on .name-heading-wrapper #name-heading {
    font-size: 3.5rem;
    transition: font-size 0.5s;
}
.about-switched-on .name-heading-wrapper #name-subheading {
    font-size: 1.5rem;
    transition: font-size 0.5s;
}
.about-switched-on .name-heading-wrapper {
    padding-top: 5vh;
    transition: padding-top 0.5s;
}
.about-switched-on .about-me {
    visibility: visible;
    opacity: 1;
    height: auto;
    font-size: 1.1rem;
    transition: font-size 0.5s, height 1s, opacity 1s;
}
a, a:visited {
    color: #2b9cce;
    text-decoration: none;
    font-weight: 600;
}
a:hover, a:focus {
    text-decoration: none;
    color: #FF8700;
    cursor: pointer;
}
#projects-section {
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding-bottom: 5vh;
    transition: background 1s;
}
.one-project {
    display: flex;
    flex-direction: row-reverse;
    border-radius: 5px;
    min-width: 300px;
    margin: 1rem;
    background: white;
    box-shadow: 0 5px 10px #a2a2a2;
    transition: color 1s, box-shadow 1s, background 1s;
}
.project-links a, .project-links a:visited {
    color: #9A35F8;
    text-decoration: none;
    padding: 5px 12px;
    border: 1px solid #9A35F8;
    border-radius: 5px;
    margin-right: 0.5rem;
}
.project-links a:hover {
    color: white;
    background: #9A35F8;
}
.project-body {
    width: 70%;
    display: flex;
    flex-direction: column;
    padding: 1.3rem;
}
.project-body div {
    margin: 0.5rem 0px;
}
.project-body .project-name {
    font-family: 'Inconsolata', cursive;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}
span, p {
    font-family: 'Inconsolata', cursive;
}
.project-body .project-tags {
    flex-wrap: wrap;
    display: flex;
}
.project-body .project-tag {
    padding: 3px 10px;
    margin: 0 0.5rem 0.5rem 0;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    color: #404040;
    transition: color 1s, background 1s;
}
.project-body .project-tag:hover {
    cursor: pointer;
}
.project-body .project-description {
    line-height: 1.4;
}
.project-pic {
    width: 50%;
    border-radius: 0 5px 5px 0;
}
.project-pic div {
    height: 100%;
}
.project-links {
    font-weight: 600;
}
.links {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10vh;
    margin-top: auto;
}
.one-link, .one-link a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: black;
    font-weight: 400;
}
.one-link i {
    font-size: 2rem;
}
.one-link:hover {
    color: #8300FF;
    cursor: pointer;
    transform: translateY(-0.3rem);
    transition: transform 0.1s, color 0s;
}
.one-link:hover>a {
    color: #8300FF;
}
.one-link .link-label {
    padding-top: 1rem;
}
#dark-mode-toggle {
    position: fixed;
    top: 3vh;
    right: 3vh;
    font-size: 2.5rem;
    color: black;
    border: 1px black;
    border-radius: 100%;
    width: 4rem;
    height: 4rem;
    background-color: rgba(0, 0, 0, 0.1)!important;
    display: flex;
    align-items: center;
    justify-content: center;
    animation-name: blink;
    animation-duration: 6s;
    animation-iteration-count: infinite;
}
.dark-mode #dark-mode-toggle {
    color: yellow;
    ;
    animation-name: unset;
}
#dark-mode-toggle:hover {
    cursor: pointer;
    color: yellow;
    animation-name: unset;
}
.dark-mode #projects-section {
    background-color: black;
    color: white;
    transition: background 1s, color 1s;
}
.dark-mode .project-tags .project-tag {
    color: black;
    font-weight: bold;
}
.dark-mode .one-project {
    box-shadow: 0px 5px 4px #0b182f;
    color: black;
    background-color: white;
    transition: background 1s, color 1s, box-shadow 1s;
}
.dark-mode .section-title {
    background-color: black;
    color: white;
    transition: color 1s, background 1s;
}
.dark-mode #intro-section {
    background: black;
    color: white;
    transition: background 1s, color 1s;
}
.dark-mode .one-link i {
    color: white;
    transition: color 1s;
}
.dark-mode .one-link i {
    color: white;
    transition: color 1s;
}
.dark-mode .one-link:hover {
    color: #8300FF;
}
.dark-mode .one-link:hover>a, .dark-mode .one-link:hover>i, .dark-mode .one-link:hover>.link-label {
    color: #8300FF;
    transition: color 0s;
}
.dark-mode .one-link:hover>a>i, .dark-mode .one-link:hover>a>.link-label {
    color: #8300FF;
    transition: color 0s;
}
.dark-mode .link-label {
    color: white;
    transition: color 1s;
}
.dark-mode #contact-section p {
    color: black;
    transition: color 1s;
}
.dark-mode #contact-section {
    background-color: black;
    color: white;
    transition: background 1s, color 1s;
}
.page-section {
    display: flex;
}
.section-wrapper {
    display: flex;
    padding: 10px;
    flex-direction: column;
    width: 100%;
    max-width: 800px;
    box-sizing: border-box;
}
.section-title {
    color: black;
    margin: 5vh auto;
    width: 25%;
    text-align: center;
}
.section-title h2 {
    font-family: 'Patua One', cursive !important;
    font-size: 3.5rem;
    font-weight: 400;
}
.intro-on-toggle #name-heading {
    font-size: 3rem;
    transition: font-size 0.5s;
}
.intro-on-toggle #name-subheading {
    font-size: 1.5rem;
    transition: font-size 0.5s;
}
.intro-on-toggle .section-wrapper {
    padding-top: 5px;
}
#intro-section {
    min-height: 100vh;
    justify-content: center;
    transition: color 1s, background 1s;
}
#intro-section .section-wrapper {
    text-align: center;
    padding: 0;
}
#projects-section .section-wrapper {
    max-width: 1000px
}
.name-heading-wrapper {
    padding-top: 25vh;
    transition: padding-top 0.5s;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
#contact-section {
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
    background-color: white;
    padding-bottom: 5vh;
    box-sizing: border-box;
    color: black;
    transition: background 1s;
}
#contact-section .section-wrapper {
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}


@media handheld, screen and (max-width: 700px) {

    #name-heading {
        font-size: 2.2rem;
    }
    #name-subheading {
        font-size: 1.3rem;
    }
    .one-project {
        flex-direction: column;
    }
    .project-pic {
        width: 100%;
        height: 30vh;
        border-radius: 5px 5px 0 0;
    }
    .project-body {
        width: 100%;
        box-sizing: border-box;
    }
    .project-body .project-name {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        margin-top: 0;
    }
    .project-body .project-tags {
        flex-wrap: wrap;
        display: flex;
        margin: 0;
    }
    .project-body .project-tag {
        font-size: 0.7rem;
    }
    .project-body .project-description {
        font-size: 0.85em;
    }
    .links {
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: center;
        padding-bottom: 10vh;
    }
    .one-link {
        display: flex;
        justify-content: center;
        box-sizing: border-box;
        flex-direction: row;
        justify-content: center;
        width: 30%;
        padding: 0.5rem 2rem;
    }
    .one-link a {
        width: 100%;
        height: 100%;
        flex-direction: row;
        justify-content: center;
        width: 100%;
    }
    .one-link:hover>a, .one-link:active>a {
        color: #3e3e3e;
    }
    .one-link .link-label {
        padding-top: 0.5rem;
        font-size: 0.9rem;
        text-transform: uppercase;
        font-weight: 600;
    }
    .one-link i {
        font-size: 1.6rem;
        display: none;
    }
    .about-me {
        width: 90%;
        font-size: 0.3rem;
    }
    .about-switched-on .name-heading-wrapper #name-heading {
        font-size: 2rem;
    }
    .about-switched-on .name-heading-wrapper #name-subheading {
        font-size: 1.2rem;
    }
    .about-switched-on .name-heading-wrapper {
        padding-top: 5vh;
    }
    .about-switched-on .about-me {
        font-size: 0.8rem;
        transition: font-size 0.5s;
    }
    .section-title {
        width: initial;
    }
    #contact-info {
        font-size: 1rem;
        padding: 0.8rem;
        min-height: 25vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    #contact-info p {
        margin: 0.5rem 0;
    }
    #photo-wrapper {
        height: 30vh;
    }
    #contact-section .section-wrapper {
        justify-content: flex-start;
    }
    #dark-mode-toggle {
        font-size: 1.5rem;
        width: 3rem;
        height: 3rem;
        z-index: 5;
    }
}
/* animista */ 
.tracking-in-expand {
	-webkit-animation: tracking-in-expand 2s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
	        animation: tracking-in-expand 2s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}
 @-webkit-keyframes tracking-in-expand {
    0% {
      letter-spacing: -0.5em;
      opacity: 0;
    }
    40% {
      opacity: 0.6;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes tracking-in-expand {
    0% {
      letter-spacing: -0.5em;
      opacity: 0;
    }
    40% {
      opacity: 0.6;
    }
    100% {
      opacity: 1;
    }
  }
