@charset "UTF-8";
:root {
  --mainBGColor1: #222a68;
  --mainBGColor2: #ab81cd;
  --mainBGColor1Light: #d09dfa;
  --mainBGColor2Light: #5266fa;
}

* {
  font-family: "Open Sans", "sans serif";
  font-size: medium;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
  cursor: default;
}

@font-face {
  font-family: "Pacifico";
  font-style: normal;
  font-weight: 400;
  src: local("Pacifico Regular"), local("Pacifico-Regular"), url(https://fonts.gstatic.com/s/pacifico/v12/FwZY7-Qmy14u9lezJ-6H6MmBp0u-.woff2) format("woff2");
  font-display: swap;
}
html {
  height: 100%;
}
html body {
  width: 100%;
}

@media all {
  .bg-dark {
    transition: color 1s;
    background: linear-gradient(135deg, #222a68, #ab81cd);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  .container {
    position: absolute;
    width: 100%;
    overflow: auto;
  }
  .container::before {
    content: "</>";
    width: 1vh;
    height: 1vh;
    font-size: 50vw;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    opacity: 15%;
    z-index: -2;
    animation: bg-anim ease-in-out 15s infinite;
  }
  @keyframes bg-anim {
    0% {
      transform: rotateZ(-15deg);
    }
    60% {
      transform: rotateZ(15deg);
    }
    100% {
      transform: rotateZ(-15deg);
    }
  }
  .container header #nav-bar {
    height: 10vh;
    width: 100%;
    align-items: center;
  }
  .container header #nav-bar .theme-btn {
    background-color: rgba(255, 255, 255, 0.25);
    border: none;
    border-bottom: solid 1px #fff;
    border-radius: 50%;
    margin: 2.25em;
    padding: 0.5em;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    outline-offset: 5px;
    cursor: pointer;
  }
  .container header #nav-bar .theme-btn > svg {
    inline-size: 100%;
    block-size: 100%;
    stroke-linecap: round;
    cursor: pointer;
  }
  .container header #nav-bar .theme-btn .sun-and-moon {
    cursor: pointer;
  }
  .container header #nav-bar .theme-btn .sun-and-moon circle {
    transition: transform 0.5s;
    fill: black;
    cursor: pointer;
  }
  .container header #nav-bar .theme-btn .sun-and-moon #sun-beams {
    transition: transform 0.5s;
    stroke: transparent;
    cursor: pointer;
  }
  .container header #nav-bar .theme-btn .sun-and-moon #black-circle {
    transition: transform 0.5s, cy 0.5s, cx 0.5s;
    radius: 5;
    cy: 9;
    cx: 15;
    cursor: pointer;
  }
  .container header #nav-bar .section-top-info {
    display: none;
    color: #d8defd;
  }
  .container header #nav-bar .section-top-info .section-info {
    color: #d8defd;
  }
  .container header #nav-bar #nav-toggle {
    display: none;
  }
  .container header #nav-bar .turn-nav-toggle {
    transform: rotate(-90deg);
  }
  .container header #nav-bar .mobile-menu .nav-items-parent li {
    list-style: none;
  }
  .container header #nav-bar .mobile-menu .nav-items-parent li .nav-item {
    color: #d8defd;
    background-color: transparent;
    border: 1px solid #4b64e3;
  }
  .container main #profile-section {
    min-height: 90vh;
  }
  .container main #profile-section .my-name {
    color: white;
    font-family: "Roboto", sans-serif;
    text-align: center;
  }
  .container main #profile-section .my-name::after {
    content: "|";
    display: inline-block;
    animation: typer 1.6s infinite;
  }
  @keyframes typer {
    0% {
      opacity: 0%;
    }
    30% {
      opacity: 100%;
    }
    40% {
      opacity: 100%;
    }
    95% {
      opacity: 0%;
    }
    100% {
      opacity: 0%;
    }
  }
  .container main #profile-section #basic-info {
    display: flex;
    margin-bottom: 5em;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 3em;
    transition: background-color 1s;
    transition: scale 1s;
  }
  .container main #profile-section #basic-info p {
    height: -moz-min-content;
    height: min-content;
    background-color: rgba(34, 42, 104, 0.6352941176);
    border-radius: 3em;
    padding: 3em;
    width: 20em;
    text-align: center;
    line-height: 1.8em;
    transition: background-color 1s;
    transition: scale 1s;
  }
  .container main #profile-section #basic-info p:hover {
    transform: scale(103%, 103%);
    background-color: rgba(171, 129, 205, 0.5921568627);
    transition: background-color 1s;
    transition: scale 1s;
  }
  .container main #profile-section .objective {
    color: #d8defd;
  }
  .container main #profile-section .objective:hover {
    color: white;
  }
  .container main #profile-section .interests {
    color: #d8defd;
    background-color: rgba(34, 42, 104, 0.6352941176);
    border-radius: 3em;
    padding: 3em;
    width: 20em;
    height: -moz-min-content;
    height: min-content;
    transition: all 1s;
  }
  .container main #profile-section .interests:hover {
    color: white;
    transform: scale(103%, 103%);
    background-color: rgba(171, 129, 205, 0.5921568627);
  }
  .container main #profile-section .interests ul li {
    font-weight: 400;
    list-style: none;
    margin: 0.2em 0;
  }
  .container main #profile-section .interests ul li:first-child {
    border-top: 1px inset white;
    margin: 0.5em 0 0 0;
    padding: 0.5em 0 0 0;
  }
  .container main #profile-section .interests ul li:hover {
    border-bottom: 1px solid white;
  }
  .container main #profile-section .interests ul li:hover::before {
    content: "";
    animation: list-focus 1s ease-out both;
    display: inline-block;
  }
  @keyframes list-focus {
    0% {
      opacity: 0%;
      border-top: 0.4em solid transparent;
      border-left: 0.4em solid #e2adf2;
      border-bottom: 0.4em solid transparent;
      transform: translateX(-2em);
    }
    100% {
      opacity: 100%;
      border-top: 0.4em solid transparent;
      border-left: 0.4em solid #e2adf2;
      border-bottom: 0.4em solid transparent;
      margin-right: 1em;
    }
  }
  .container main #profile-section .interests ul li:first-child::after {
    content: "🐈";
    margin-left: 40%;
    opacity: 0%;
    transition: all 1s;
  }
  .container main #profile-section .interests ul li:first-child:hover::after {
    content: "🐈";
    margin-left: 60%;
    opacity: 100%;
  }
  .container main #profile-section .interests ul li:nth-child(2)::after {
    content: "🍅";
    margin-left: 40%;
    opacity: 0%;
    transition: all 1s;
  }
  .container main #profile-section .interests ul li:nth-child(2):hover::after {
    content: "🍅";
    margin-left: 20%;
    opacity: 100%;
  }
  .container main #profile-section .interests ul li:nth-child(3)::after {
    content: "🎮";
    margin-left: 40%;
    opacity: 0%;
    transition: all 1s;
  }
  .container main #profile-section .interests ul li:nth-child(3):hover::after {
    content: "🎮";
    margin-left: 20%;
    opacity: 100%;
  }
  .container main #profile-section .interests ul li:nth-child(4)::after {
    content: "📖";
    margin-left: 40%;
    opacity: 0%;
    transition: all 1s;
  }
  .container main #profile-section .interests ul li:nth-child(4):hover::after {
    content: "📖";
    margin-left: 20%;
    opacity: 100%;
  }
  .container main #profile-section .interests ul li:nth-child(5)::after {
    content: "🎨";
    margin-left: 40%;
    opacity: 0%;
    transition: all 1s;
  }
  .container main #profile-section .interests ul li:nth-child(5):hover::after {
    content: "🎨";
    margin-left: 20%;
    opacity: 100%;
  }
  .container main .bio-section {
    transition: all 1s;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
  }
  .container main .bio-section .bio {
    color: #d8defd;
    font-size: 2.5em;
    text-align: center;
  }
  .container main .bio-section div {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
  }
  .container main .bio-section div .bg-para {
    line-height: 1.7em;
    background-color: rgba(255, 255, 255, 0.1);
    color: #d8defd;
    padding: 5em;
    border-radius: 20%;
    opacity: 0;
    transition: all 1s;
  }
  .container main .bio-section div .translateU-animated {
    opacity: 100%;
    transform: translateY(0);
  }
  .container main #skills-section {
    display: grid;
    margin: 1em 3vw;
    grid-template-columns: 1fr 1fr minmax(0, 1fr);
    min-height: 50vh;
    height: -moz-fit-content;
    height: fit-content;
  }
  .container main #skills-section .skills {
    color: #d8defd;
  }
  .container main #skills-section h2 {
    grid-column: 2;
    text-align: center;
    margin: 1em;
  }
  .container main #skills-section .skill-icons {
    display: flex;
    align-content: flex-start;
    grid-row: 2;
    grid-column: 1/4;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    transition: all 1s;
  }
  .container main #skills-section .skill-icons .skill-desc p {
    text-shadow: none;
  }
  .container main #skills-section .skill-icons img {
    width: 100%;
    filter: drop-shadow(1px 1px 0 #222);
  }
  .container main #skills-section .skill-icons p {
    margin-top: 0.5em;
    color: #d8defd;
    text-shadow: 1px 1px #222;
  }
  .container main #skills-section .fade-animated {
    opacity: 100%;
  }
  .container main #skills-section #html-s > div,
  .container main #skills-section #css-s > div,
  .container main #skills-section #js-s > div,
  .container main #skills-section #bt-s > div,
  .container main #skills-section #ts-s > div,
  .container main #skills-section #visual-studio-code-s > div,
  .container main #skills-section #c-sharp-s > div,
  .container main #skills-section #mysql-s > div,
  .container main #skills-section #scss-s > div,
  .container main #skills-section #sql-s > div,
  .container main #skills-section #visual-studio-s > div,
  .container main #skills-section #react-s > div,
  .container main #skills-section #dot-net-core-s > div,
  .container main #skills-section #tailwind-s > div,
  .container main #skills-section #auth0-s > div,
  .container main #skills-section #firebase-s > div,
  .container main #skills-section #github-s > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 5em;
    height: 5em;
    transition: all 0.5s ease-out;
    text-align: center;
  }
  .container main #projects-section .project-text {
    transition: all 0.5s;
    text-align: center;
    color: #d8defd;
  }
  .container main #projects-section .filter-area {
    margin: 0 10vw;
    padding: 1em;
  }
  .container main #projects-section .filter-area p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 1em;
    color: #d8defd;
  }
  .container main #projects-section .filter-area .skill-list {
    display: flex;
    flex-wrap: wrap;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    justify-content: center;
    gap: 1em;
    list-style: none;
  }
  .container main #projects-section .filter-area .skill-list li {
    padding: 0.5em 1em;
    background-color: rgba(34, 42, 104, 0.4862745098);
    border-radius: 1em;
    color: #d8defd;
    box-shadow: 5px 7px 3px #222a68;
    border: 1px solid rgba(0, 0, 0, 0);
    transition: all 0.25s;
  }
  .container main #projects-section .filter-area .skill-list .skill {
    transition: all 0.5s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4862745098);
  }
  .container main #projects-section .filter-area .skill-list .skill:hover {
    box-shadow: 0 0 15px 5px rgba(240, 216, 253, 0.2235294118) inset;
    border: 1px solid;
  }
  .container main #projects-section .filter-area .skill-list .skill-selected {
    background-color: #222a68;
    animation: skillSelected 0.5s forwards;
  }
  .container main #projects-section .filter-area .skill-list .skill-selected:hover {
    background-color: #222a68;
    box-shadow: 0 0 15px 5px rgba(216, 216, 253, 0.2235294118) inset;
    border: 1px solid;
  }
  @keyframes skillSelected {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }
  .container main #projects-section .project-grid {
    display: grid;
    max-height: -moz-fit-content;
    max-height: fit-content;
    justify-items: center;
    background-color: rgba(34, 42, 104, 0.4862745098);
    border-radius: 1em;
    padding: 2em 1em;
    transition: opacity 0.25s, transform 0.5s;
  }
  .container main #projects-section .project-grid .rp-rooms {
    background: url("../img/projects/rp-rooms-thumbnail.jpg") no-repeat;
  }
  .container main #projects-section .project-grid .free-the-games {
    background: url("../img/projects/video-game-list-thumbnail.jpg") no-repeat;
  }
  .container main #projects-section .project-grid .dress-up-game {
    background: url("../img/projects/dress-up-thumbnail.jpg") no-repeat;
  }
  .container main #projects-section .project-grid .simple-project-timer {
    background: url("../img/projects/simple-project-timer-thumbnail.jpg") no-repeat;
  }
  .container main #projects-section .project-grid .mini-expense-tracker {
    background: url("../img/projects/mini-expense-tracker-thumbnail.jpg") no-repeat;
  }
  .container main #projects-section .project-grid .project {
    display: flex;
    flex-direction: column;
    height: 18vw;
    width: 25vw;
    justify-content: end;
    background-color: #222a68;
    opacity: 100%;
    background-size: contain;
    background-position: center;
    border-radius: 1em;
    cursor: pointer;
    transition: all 1s;
  }
  .container main #projects-section .project-grid .project .project-title {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
    padding: 0.5rem 0;
    cursor: pointer;
    border-radius: 0 0 1em 1em;
  }
  .container main #projects-section .project-grid .fade-animated {
    opacity: 100%;
  }
  .container main #projects-section .project-disclaimer {
    text-align: center;
    margin: 1em 5em;
    color: rgba(255, 255, 255, 0.5);
  }
  .container main #games-section .project-text {
    transition: all 0.5s;
    text-align: center;
    color: #d8defd;
  }
  .container main #games-section .games-note {
    text-align: center;
    margin: 1em 5em;
    color: rgba(255, 255, 255, 0.5);
  }
  .container main #contact-section {
    background-color: #222a68;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .container main #contact-section .contact-title {
    transition: all 0.5s;
    font-size: 2.5em;
    margin: 1em 0;
    color: #d8defd;
  }
  .container main #contact-section form {
    opacity: 0;
    color: #d8defd;
    transform: scale(1.25);
    display: flex;
    flex-direction: column;
    padding: 3vh 3vw;
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 0.5em;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.15);
    margin-bottom: 3em;
    transition: all 1s;
  }
  .container main #contact-section form:hover {
    background-color: rgba(255, 255, 255, 0.01);
  }
  .container main #contact-section form input {
    color: white;
    border: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 0.25em;
    padding: 0.25em;
  }
  .container main #contact-section form #name {
    width: 10em;
  }
  .container main #contact-section form #email-subject {
    width: 10em;
  }
  .container main #contact-section form #email {
    width: 10em;
  }
  .container main #contact-section form #message {
    resize: none;
    min-height: 1.5em;
    height: 10em;
    color: white;
    border: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 0.25em;
    margin-bottom: 1em;
  }
  .container main #contact-section form #submit {
    margin: auto;
    height: 3em;
    width: 10em;
    transition: all 0.5s;
  }
  .container main #contact-section .scale-animated {
    opacity: 100%;
    transform: scale(1);
  }
  .container main #contact-section .email-after {
    display: none;
    position: fixed;
    z-index: 3;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .container main #contact-section .email-after .info-holder {
    display: grid;
    height: 100%;
    place-items: center;
    text-align: center;
  }
  .container main #contact-section .email-after .info-holder p {
    background-color: rgba(255, 255, 255, 0.25);
    line-height: 2em;
    padding: 3vw;
    border-radius: 5em;
  }
  .container main #contact-section .email-success {
    display: block;
  }
  .container footer {
    margin-top: 3em;
    width: 100%;
    height: 8.5em;
  }
  .container footer .to-top {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 3vw;
    bottom: 5vh;
    z-index: 1;
    right: 3vw;
    width: 5em;
    height: 5em;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba 0, 0, 0, 0.5;
    background: linear-gradient(0deg, var(--mainBGColor1), var(--mainBGColor2));
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: all 1s;
  }
  .container footer .social-media {
    width: 100%;
    height: 5em;
    padding: 1em;
  }
  .container footer .social-media.dark-sm {
    transition: all 0.5s;
    background: linear-gradient(to right, transparent, #222a68, transparent);
  }
  .container footer .social-media .sm-parent {
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    height: 100%;
    transform: translateX(-20vw);
    opacity: 0;
    gap: 2em;
    transition: all 1s;
  }
  .container footer .social-media .sm-parent .dark-a {
    transition: all 1s;
    color: #d8defd;
  }
  .container footer .social-media .sm-parent i {
    margin-left: 0.5em;
  }
  .container footer .social-media .translateR-animated {
    opacity: 100%;
    transform: translateX(0);
  }
  .container footer .end {
    transition: all 1s;
    text-align: center;
    margin: 1em 0;
  }
  .container footer .end-color {
    color: #d8defd;
  }
}
@media all and (min-width: 1008px) {
  * {
    font-size: 16px;
  }
  .container {
    width: 100%;
    overflow: auto;
  }
  .container::before {
    top: 50vh;
    left: 47vw;
  }
  .container header #nav-bar {
    display: flex;
    justify-content: space-between;
  }
  .container header #nav-bar .theme-btn {
    position: fixed;
    top: 0;
    z-index: 3;
    width: 3em;
    height: 3em;
  }
  .container header #nav-bar .section-top-info {
    display: block;
    border-left: 1px rgba(255, 255, 255, 0.25) solid;
    border-right: 1px rgba(255, 255, 255, 0.25) solid;
    padding: 1.5em 1em;
    position: absolute;
    top: 1.5em;
    left: 7.5em;
  }
  .container header #nav-bar .nav-toggle {
    display: none;
  }
  .container header #nav-bar .mobile-menu {
    transition: all 0.5s;
    top: 0;
    z-index: 2;
    width: 100%;
    position: fixed;
    box-shadow: 0 0 3em rgba(0, 0, 0, 0.5);
    background-color: #222a68;
  }
  .container header #nav-bar .mobile-menu .nav-items-parent {
    display: flex;
    justify-content: flex-end;
    gap: 5em;
  }
  .container header #nav-bar .mobile-menu .nav-items-parent li {
    margin: 2.5em 0;
  }
  .container header #nav-bar .mobile-menu .nav-items-parent li .nav-item {
    font-size: 1em;
    width: 6em;
    height: 2.5em;
    text-decoration: none;
    transition: all 0.25s;
  }
  .container header #nav-bar .mobile-menu .nav-items-parent li .nav-item:hover {
    background-color: rgba(255, 255, 255, 0.25);
  }
  .container header #nav-bar .mobile-menu .nav-items-parent li:last-child {
    margin-right: 5vw;
  }
  .container header #nav-bar .mobile-menu .nav-items-parent a {
    text-decoration: none;
    text-align: center;
    border: 1px solid white;
    color: white;
    transition: all 0.5s;
  }
  .container header #nav-bar .mobile-menu .nav-items-parent a:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
  }
  .container main #profile-section .my-name {
    margin: 1em 0 1em 0;
    font-size: 8em;
  }
  .container main #profile-section #basic-info {
    justify-content: space-evenly;
  }
  .container main .bio-section {
    padding: 5em;
    height: -moz-fit-content;
    height: fit-content;
  }
  .container main .bio-section div {
    margin: 0 3vw;
    -moz-column-gap: 5vw;
         column-gap: 5vw;
  }
  .container main .bio-section div p {
    width: 100%;
    max-width: 50vw;
    height: 100%;
    margin: 3em 3em;
    font-size: 100%;
    transform: translateY(100px);
  }
  .container main .bio-section h2 {
    font-size: 2em;
  }
  .container main #skills-section {
    min-height: 70vh;
    grid-template-rows: 1fr 2fr;
  }
  .container main #skills-section h2 {
    font-size: 4em;
  }
  .container main #skills-section .skill-icons {
    align-content: center;
    -moz-column-gap: 3em;
         column-gap: 3em;
    gap: 5em;
  }
  .container main #skills-section .skill-desc {
    width: -moz-max-content;
    width: max-content;
  }
  .container main #skills-section .skill-desc::before {
    left: 46.5%;
  }
  .container main #skills-section .skill-desc p {
    font-size: 8px;
  }
  .container main #projects-section {
    min-height: 70vh;
    margin-top: 10vw;
    width: 100%;
  }
  .container main #projects-section h2 {
    text-align: center;
    font-size: 4em;
    margin-bottom: 2em;
  }
  .container main #projects-section .project-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3.5vw;
    margin: 3vh 3vh;
  }
  .container main #projects-section .project-grid .project {
    transition: all 0.5s;
    background-color: transparent;
    max-height: 252px;
    max-width: 350px;
  }
  .container main #projects-section .project-grid .project .project-title {
    opacity: 0;
    transform: translateY(-200%);
    text-align: center;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 0.5rem 0;
    transition: all 0.5s;
  }
  .container main #projects-section .project-grid .project-parent {
    transition: all 0.5s;
    border-radius: 1em;
    filter: saturate(0) brightness(0.75);
  }
  .container main #projects-section .project-grid .project-parent:hover {
    transform: scale(1.1);
    background-color: #fff;
    filter: brightness(1) saturate(1);
    transform-origin: center;
  }
  .container main #projects-section .project-grid .project-parent:hover .project {
    background-position: top;
    filter: drop-shadow(0 5px 5px #222);
    box-shadow: inset 1px 1px 0 #222, inset -1px 0 1px #222;
  }
  .container main #projects-section .project-grid .project-parent:hover .project .project-title {
    transform: translateY(-10%);
    filter: drop-shadow(0 0 0 transparent);
    color: black;
    opacity: 100%;
    background-color: transparent;
  }
  .container main #projects-section .project-grid .project-parent-hide {
    display: none;
  }
  .container main #games-section {
    min-height: 70vh;
    margin-top: 10vw;
    width: 100%;
  }
  .container main #games-section h2 {
    text-align: center;
    font-size: 4em;
    margin-bottom: 2em;
  }
  .container main #games-section .project-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3.5vw;
    margin: 3vh 3vh;
  }
  .container main #games-section .project-grid .project {
    transition: all 0.5s;
    background-color: transparent;
    max-height: 252px;
    max-width: 350px;
  }
  .container main #games-section .project-grid .project .project-title {
    opacity: 0;
    transform: translateY(-200%);
    text-align: center;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 0.5rem 0;
    transition: all 0.5s;
  }
  .container main #games-section .project-grid .project-parent {
    transition: all 0.5s;
    border-radius: 1em;
    filter: saturate(0) brightness(0.75);
  }
  .container main #games-section .project-grid .project-parent:hover {
    transform: scale(1.1);
    background-color: #fff;
    filter: brightness(1) saturate(1);
    transform-origin: center;
  }
  .container main #games-section .project-grid .project-parent:hover .project {
    background-position: top;
    filter: drop-shadow(0 5px 5px #222);
    box-shadow: inset 1px 1px 0 #222, inset -1px 0 1px #222;
  }
  .container main #games-section .project-grid .project-parent:hover .project .project-title {
    transform: translateY(-10%);
    filter: drop-shadow(0 0 0 transparent);
    color: black;
    opacity: 100%;
    background-color: transparent;
  }
  .container main #games-section .project-grid .project-parent-hide {
    display: none;
  }
  .container main #contact-section {
    height: 70vh;
    min-height: 495px;
    margin: 20vh 0 10vh 0;
  }
  .container main #contact-section .contact-title {
    margin-bottom: 0;
  }
  .container main #contact-section form {
    justify-content: space-evenly;
    height: 70%;
    min-height: 310px;
    width: 25vw;
    min-width: 500px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.15);
    margin: auto;
  }
  .container main #contact-section form input {
    margin-bottom: 1em;
  }
  .container main #contact-section form #submit:hover {
    background-color: rgba(0, 0, 0, 0.5);
  }
  .container footer .to-top:hover {
    background: linear-gradient(0deg, var(--mainBGColor2), var(--mainBGColor1));
  }
}
@media all and (min-width: 1800px) {
  .container main #projects-section .project-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.container header #nav-bar .light-mobile-menu {
  background-color: #4251c7;
  border-bottom: 1px solid #3643a3;
}

@media all and (min-width: 641px) and (max-width: 1007px) {
  * {
    font-size: 2vw;
  }
  .container::before {
    top: 40vw;
    left: 50vw;
    margin: 0;
  }
  .container header #nav-bar .theme-btn {
    position: fixed;
    width: 7.25vw;
    height: 7.25vw;
  }
  .container header #nav-bar .light-mobile-menu {
    background-color: transparent;
    border-bottom: none;
  }
  .container header #nav-bar .mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1;
  }
  .container header #nav-bar .mobile-menu .nav-toggle {
    width: 7vw;
    height: 7vw;
    margin: 4.5vw;
    background: url("../img/logo/menu-logo.svg") no-repeat center;
    background-size: contain;
    transition: all 0.5s;
    cursor: pointer;
  }
  .container header #nav-bar .mobile-menu .nav-menu {
    right: 0;
    position: fixed;
    height: 0;
    width: 20vw;
    overflow: hidden;
    transition: all 1s;
    opacity: 0;
    transition: all 1s;
  }
  .container header #nav-bar .mobile-menu .nav-menu li {
    display: table;
    opacity: 100%;
    list-style: none;
    text-align: center;
    overflow: hidden;
    width: 7em;
    height: 3em;
    margin: 1em 1em;
    transition: all 1s;
  }
  .container header #nav-bar .mobile-menu .nav-menu li .nav-item {
    display: table-cell;
    vertical-align: middle;
    text-decoration: none;
    font-size: 1.1em;
    width: 6em;
    height: 2.5em;
    border: 1px solid #fff;
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    text-shadow: 1px 1px #222;
  }
  .container header #nav-bar .mobile-menu .show-menu {
    right: 0;
    height: 35vw;
    opacity: 100%;
    background-color: #ab81cd;
    transition: all 1s;
  }
  .container main #profile-section {
    height: 90vh;
  }
  .container main #profile-section .my-name {
    font-size: 6.5em;
    margin-bottom: 2em;
    margin-top: 10vw;
  }
  .container main #profile-section #basic-info {
    justify-content: space-evenly;
  }
  .container main .bio-section {
    padding: 3em;
  }
  .container main .bio-section div {
    flex-direction: column;
  }
  .container main .bio-section div h2 {
    font-size: 3vw;
    margin-bottom: 2em;
  }
  .container main .bio-section div p {
    font-size: 15px;
    transform: translateY(10vh);
  }
  .container main #skills-section {
    grid-template-rows: 0.5fr 2fr;
  }
  .container main #skills-section h2 {
    font-size: 2.5em;
  }
  .container main #skills-section .skill-icons {
    gap: 5em;
  }
  .container main #skills-section .skill-desc {
    width: 25vw;
  }
  .container main #skills-section .skill-desc::before {
    left: 42%;
  }
  .container main #skills-section .skill-desc p {
    font-size: 7px;
  }
  .container main #projects-section {
    min-height: 70vh;
    margin-top: 7em;
  }
  .container main #projects-section h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 1em;
  }
  .container main #projects-section .project-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 3.5vw;
    margin: 0 2em;
  }
  .container main #projects-section .project-grid .project {
    height: 27vw;
    width: 37vw;
  }
  .container main #games-section {
    min-height: 70vh;
    margin-top: 7em;
  }
  .container main #games-section h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 1em;
  }
  .container main #games-section .project-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 3.5vw;
    margin: 0 2em;
  }
  .container main #games-section .project-grid .project {
    height: 27vw;
    width: 37vw;
  }
  .container main #contact-section {
    margin-top: 3em;
    height: 50vh;
    min-height: 630px;
  }
  .container main #contact-section form {
    height: 35vh;
    min-height: 410px;
    width: 70vw;
  }
  .container main #contact-section form input {
    margin-bottom: 0.5em;
  }
  .container main #contact-section form #message {
    margin-bottom: 0.75em;
  }
}
@media all and (max-width: 640px) {
  * {
    font-size: 3.5vw;
  }
  .container {
    width: 100%;
    overflow: auto;
  }
  .container::before {
    top: 23vh;
    left: 50vw;
    margin: 0;
    opacity: 5%;
  }
  .container header #nav-bar {
    height: 10vh;
    width: 100%;
    align-items: center;
  }
  .container header #nav-bar .theme-btn {
    position: fixed;
    border-radius: 50%;
    width: 9vw;
    height: 9vw;
    margin: 1.5em;
  }
  .container header #nav-bar .light-mobile-menu {
    background-color: transparent;
    border-bottom: none;
  }
  .container header #nav-bar .mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1;
  }
  .container header #nav-bar .mobile-menu .nav-toggle {
    width: 9vw;
    height: 9vw;
    margin: 5.5vw;
    background: url("../img/logo/menu-logo.svg") no-repeat center;
    background-size: contain;
    transition: all 0.5s;
  }
  .container header #nav-bar .mobile-menu .nav-menu {
    position: fixed;
    right: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 1s;
  }
  .container header #nav-bar .mobile-menu .nav-menu li {
    opacity: 100%;
    display: table;
    list-style: none;
    text-align: center;
    overflow: hidden;
    width: 7em;
    height: 3em;
    margin: 1em 1em;
  }
  .container header #nav-bar .mobile-menu .nav-menu li .nav-item {
    display: table-cell;
    vertical-align: middle;
    text-decoration: none;
    font-size: 1.1em;
    width: 6em;
    height: 2.5em;
    border: 1px solid #fff;
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    text-shadow: 1px 1px #222;
  }
  .container header #nav-bar .mobile-menu .show-menu {
    right: 0;
    height: 60vw;
    opacity: 100%;
    background-color: #ab81cd;
  }
  .container main #profile-section {
    min-height: 90vh;
    margin-top: 3em;
  }
  .container main #profile-section .my-name {
    font-family: "Roboto", sans-serif;
    font-size: 4em;
    margin-bottom: 2em;
  }
  .container main #profile-section #basic-info {
    margin-top: 5em;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
  }
  .container main .bio-section {
    padding: 3em;
    min-height: 100vh;
  }
  .container main .bio-section div {
    flex-direction: column;
  }
  .container main .bio-section div h2 {
    font-size: 1.5em;
    margin-bottom: 2em;
  }
  .container main .bio-section div p {
    transform: translateY(10vh);
  }
  .container main #skills-section {
    grid-template-rows: 0.5fr 2fr;
  }
  .container main #skills-section h2 {
    font-size: 3em;
  }
  .container main #skills-section .skill-icons {
    -moz-column-gap: 10vw;
         column-gap: 10vw;
    row-gap: 5vh;
  }
  .container main #skills-section .skill-desc {
    width: 25vw;
  }
  .container main #skills-section .skill-desc::before {
    left: 33%;
  }
  .container main #skills-section .skill-desc p {
    font-size: 7px;
  }
  .container main #projects-section {
    min-height: 70vh;
    margin-top: 7em;
  }
  .container main #projects-section h2 {
    font-size: 2.5em;
    margin-bottom: 1em;
  }
  .container main #projects-section .project-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 3.5vw;
    margin: 0 2em;
  }
  .container main #projects-section .project-grid .project {
    height: 27vw;
    width: 37.5vw;
  }
  .container main #games-section {
    min-height: 70vh;
    margin-top: 7em;
  }
  .container main #games-section h2 {
    font-size: 2.5em;
    margin-bottom: 1em;
  }
  .container main #games-section .project-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 3.5vw;
    margin: 0 2em;
  }
  .container main #games-section .project-grid .project {
    height: 27vw;
    width: 37.5vw;
  }
  .container main #contact-section {
    margin-top: 3em;
    height: 50vh;
    min-height: 630px;
  }
  .container main #contact-section form {
    height: 35vh;
    min-height: 300px;
    height: 50vh;
    width: 70vw;
  }
  .container main #contact-section form input {
    margin-bottom: 0.5em;
  }
}
@media all {
  .bg-light {
    background: linear-gradient(135deg, #d09dfa, #5266fa);
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  .container header #nav-bar .mobile-menu .section-top-info.light-section-top {
    color: white;
  }
  .container header #nav-bar .mobile-menu .section-top-info .light-section-top {
    color: white;
  }
}
@media all and (max-width: 1007px) {
  .container header #nav-bar .mobile-menu .light-nav-menu {
    background-color: #d09dfa;
  }
}
@media all {
  .container header #nav-bar .theme-btn.light-theme-btn {
    background-color: rgba(255, 255, 255, 0.25);
  }
  .container header #nav-bar .theme-btn .light-sun-and-moon circle {
    fill: yellow;
  }
  .container header #nav-bar .theme-btn .light-theme #sun-beams {
    transition: all 0.5s ease-out;
    stroke: yellow;
  }
  .container header #nav-bar .theme-btn .light-theme #black-circle {
    transition: all 0.5s ease-in-out;
    cy: -15;
    cx: 24;
  }
  .container header #nav-bar .mobile-menu .nav-items-parent li .light-nav-item {
    color: white;
    border: 1px solid white;
  }
  .container header #nav-bar .mobile-menu .nav-toggle {
    border: 1px solid #fff;
  }
  .container main #profile-section .light-my-name {
    transition: all 0.5s;
    color: white;
    text-shadow: 1px 3px 0 rgba(29, 40, 129, 0.5254901961);
  }
  .container main #profile-section #basic-info .light-objective {
    transition: all 0.5s;
    background-color: rgba(66, 82, 199, 0.5960784314);
    color: white;
  }
  .container main #profile-section #basic-info .light-objective:hover {
    transition: all 0.5s;
    background-color: #5266fa;
    box-shadow: 0 3px 10px rgba(23, 37, 145, 0.4745098039);
  }
  .container main #profile-section #basic-info .light-interests {
    transition: all 0.5s;
    background-color: rgba(66, 82, 199, 0.5960784314);
    color: white;
  }
  .container main #profile-section #basic-info .light-interests:hover {
    transition: all 0.5s;
    background-color: #5266fa;
    box-shadow: 0 3px 10px rgba(23, 37, 145, 0.4745098039);
  }
  .container main .bio-section.light-bio-section {
    transition: all 0.5s;
    box-shadow: 0 3px 10px rgba(23, 37, 145, 0.4745098039), 0 -3px 10px rgba(23, 37, 145, 0.4745098039);
    background-color: rgba(75, 93, 227, 0.5294117647);
  }
  .container main .bio-section div .light-background {
    transition: all 0.5s;
    color: white;
  }
  .container main .bio-section div .light-bg-para {
    transition: all 0.5s;
    box-shadow: 0 3px 10px rgba(23, 37, 145, 0.4745098039);
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
  }
  .container main #skills-section .light-skills {
    transition: all 0.5s;
    text-shadow: 1px 1px 0 #222;
    color: white;
  }
  .container main #skills-section .skill-icons .skill-div img {
    width: 64px;
    height: 64px;
  }
  .container main #skills-section .skill-icons .light-skill-div .skill-desc {
    background-color: rgba(82, 102, 250, 0.7176470588);
  }
  .container main #skills-section .skill-icons .light-skill-div .skill-desc::before {
    border-top-color: rgba(82, 102, 250, 0.7176470588);
  }
  .container main #skills-section .skill-icons .light-skill-div .skill-desc p {
    color: white;
    text-shadow: none;
  }
  .container main #skills-section .skill-icons .light-skill-div img {
    filter: drop-shadow(1px 2px 2px #222);
  }
  .container main #skills-section .skill-icons .light-skill-div .skill-title {
    color: white;
    text-shadow: 1px 1px black;
  }
  .container main #projects-section .light-project-text {
    transition: color 0.5s;
    color: white;
    text-shadow: 1px 1px 0 #222;
  }
  .container main #projects-section .filter-area.light-filter-area {
    transition: color 0.5s;
  }
  .container main #projects-section .filter-area.light-filter-area p {
    color: white;
    text-shadow: 1px 1px 0 #222;
  }
  .container main #projects-section .filter-area .skill-list .light-skill-list {
    transition: all 0.5s;
    color: white;
    background-color: rgba(82, 102, 250, 0.5568627451);
  }
  .container main #projects-section .filter-area .skill-list .light-skill-list:hover {
    background-color: rgba(149, 162, 255, 0.5568627451);
    color: white;
  }
  .container main #projects-section .filter-area .skill-list .light-skill-selected {
    transition: all 0.5s;
    text-shadow: 1px 2px 0 #222;
    background-color: rgba(208, 157, 250, 0.5607843137);
    box-shadow: 0 3px 10px rgba(23, 37, 145, 0.4745098039);
    animation: lightSkillSelected 0.5s forwards;
  }
  .container main #projects-section .filter-area .skill-list .light-skill-selected:hover {
    background-color: rgba(221, 180, 255, 0.5607843137);
    border: 1px solid #fff;
  }
  @keyframes lightSkillSelected {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }
  .container main #projects-section .light-project-grid {
    transition: all 0.5s;
    box-shadow: 0 3px 10px rgba(23, 37, 145, 0.4745098039);
    background-color: rgba(82, 102, 250, 0.5568627451);
  }
  .container main #games-section .light-project-text {
    transition: color 0.5s;
    color: white;
    text-shadow: 1px 1px 0 #222;
  }
  .container main #games-section .filter-area.light-filter-area {
    transition: color 0.5s;
  }
  .container main #games-section .filter-area.light-filter-area p {
    color: white;
    text-shadow: 1px 1px 0 #222;
  }
  .container main #games-section .filter-area .skill-list .light-skill-list {
    transition: all 0.5s;
    color: white;
    background-color: rgba(82, 102, 250, 0.5568627451);
  }
  .container main #games-section .filter-area .skill-list .light-skill-list:hover {
    background-color: rgba(149, 162, 255, 0.5568627451);
    color: white;
  }
  .container main #games-section .filter-area .skill-list .light-skill-selected {
    transition: all 0.5s;
    text-shadow: 1px 2px 0 #222;
    background-color: rgba(208, 157, 250, 0.5607843137);
    box-shadow: 0 3px 10px rgba(23, 37, 145, 0.4745098039);
    animation: lightSkillSelected 0.5s forwards;
  }
  .container main #games-section .filter-area .skill-list .light-skill-selected:hover {
    background-color: rgba(221, 180, 255, 0.5607843137);
    border: 1px solid #fff;
  }
  @keyframes lightSkillSelected {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }
  .container main #games-section .light-project-grid {
    transition: all 0.5s;
    box-shadow: 0 3px 10px rgba(23, 37, 145, 0.4745098039);
    background-color: rgba(82, 102, 250, 0.5568627451);
  }
  .container main #contact-section.light-contact-section {
    transition: all 0.5s;
    background-color: #5266fa;
    box-shadow: 0 3px 10px rgba(23, 37, 145, 0.4745098039), 0 -3px 10px rgba(23, 37, 145, 0.4745098039);
  }
  .container main #contact-section .light-contact-title {
    transition: all 0.5s;
    color: white;
    text-shadow: 1px 2px 0 #222;
  }
  .container main #contact-section .contact-sentences {
    display: flex;
    flex-direction: column;
    min-height: 30%;
  }
  .container main #contact-section .contact-line {
    margin: auto;
    color: #c1c1c1;
  }
  .container main #contact-section .contact-line b {
    color: #fff;
  }
  .container main #contact-section .contact-response {
    color: #c1c1c1;
    margin: auto;
  }
  .container main #contact-section #contact-form.light-form {
    color: white;
  }
  .container footer .light-to-top {
    background: linear-gradient(0deg, #d09dfa, #5266fa);
  }
  .container footer .light-to-top:hover {
    background: linear-gradient(180deg, #d09dfa, #5266fa);
  }
  .container footer .light-social-media {
    transition: all 1s;
    background: linear-gradient(to right, transparent, #5266fa, transparent);
    filter: drop-shadow(0 3px 5px #162172);
  }
  .container footer .light-social-media ul a {
    color: white;
  }
  .container footer .light-credit {
    transition: all 1s;
    color: white;
    text-shadow: 1px 1px #222;
  }
}/*# sourceMappingURL=main-style.css.map */