@import url("https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
* {
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  text-decoration: none;
  font-family: sans-serif;
}

html {
  font-size: 12px;
}

@media screen and (min-width: 378px) {
  #nav-content {
    width: 25vw;
  }
  #nav-content.close {
    width: 10vw;
  }
  #nav-content.close #navbar a {
    height: 10rem;
  }
  #nav-content #theme-toggle {
    border: none;
  }
  #nav-content #theme-toggle .icon-content {
    width: 6rem;
    height: 6rem;
  }
  #nav-content #navbar a {
    height: 20rem;
    font-size: 225%;
  }
  main #title h1 {
    font-size: 250%;
  }
  main article#skill section .tech-content {
    flex-wrap: wrap;
  }
  main article#skill section .tech-content#front-tech {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
  main article#skill section .tech-content .skill-card {
    width: 15rem;
    height: 20rem;
    gap: 10%;
  }
  main article#skill section .tech-content .skill-card h3 {
    font-size: 2rem;
  }
  main article#skill section .tech-content .skill-card .icon-content {
    width: 35%;
  }
  main article#skill section .tech-content .skill-card canvas {
    width: 60%;
  }
  main article#project section .project-card {
    width: 50%;
  }
  main article#project section .project-card .header-card .toggle-card {
    display: none;
  }
  main article#project section .project-card .project-view iframe {
    display: none;
  }
  main article#project section .project-card .footer-card {
    width: 75%;
    height: 10%;
  }
  main article#project section .project-card .footer-card a {
    width: 15%;
  }
  main article#project section .project-card .footer-card a .icon-content {
    height: 60%;
  }
  main footer {
    height: 6vh;
  }
  main footer a {
    height: 65%;
  }
  main footer a .icon-content {
    width: 4rem;
    height: 4rem;
  }
  main footer a p {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1280px) {
  #nav-content {
    width: 6vw;
  }
  #nav-content.close {
    width: 2vw;
  }
  #nav-content.close #navbar a {
    height: 5rem;
  }
  #nav-content #navbar-toggle {
    cursor: pointer;
  }
  #nav-content #navbar-toggle:before {
    position: absolute;
    z-index: -1;
    transition: width ease 0.5s;
    border-radius: 10px;
    content: "";
    height: 100%;
    width: 0;
    right: 0;
  }
  #nav-content #navbar-toggle:hover svg {
    fill: var(--theme-background);
  }
  #nav-content #navbar-toggle:hover:before {
    background: #00e8be;
    width: 100%;
  }
  #nav-content #navbar-toggle svg {
    transition: fill ease 0.5s;
  }
  #nav-content #theme-toggle {
    cursor: pointer;
    width: 8rem;
    height: 4.4rem;
  }
  #nav-content #theme-toggle .icon-content {
    width: 3rem;
    height: 3rem;
  }
  #nav-content #navbar a {
    height: 10rem;
    font-size: 125%;
  }
  #nav-content #navbar a.active:before {
    background: #00e8be;
    width: 100%;
  }
  #nav-content #navbar a.active:hover:before {
    width: 0;
  }
  main .page-container {
    height: 81%;
  }
  main .page-container article#skill section .tech-content#front-tech {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
  }
  main .page-container article#skill section .tech-content .skill-card {
    width: 20rem;
    gap: 1.5rem;
  }
  main .page-container article#skill section .tech-content .skill-card h3 {
    font-size: 1.5rem;
  }
  main .page-container article#skill section .tech-content .skill-card .icon-content {
    width: 25%;
  }
  main .page-container article#skill section .tech-content .skill-card canvas {
    width: 50%;
  }
  main .page-container article#project section .project-card {
    width: 25%;
    height: 81%;
    background: none;
  }
  main .page-container article#project section .project-card.active {
    position: absolute;
    z-index: 2;
    width: 99%;
    height: 100%;
    background: linear-gradient(140deg, var(--theme-background) 0%, var(--gradient) 100%);
  }
  main .page-container article#project section .project-card.active .header-card .toggle-card:hover .card-size {
    width: 2rem;
    height: 2rem;
    background: none;
  }
  main .page-container article#project section .project-card.active .header-card .toggle-card .card-size {
    height: 0.1rem;
    background: var(--theme-color);
  }
  main .page-container article#project section .project-card.active .project-view {
    width: 60%;
    height: 100%;
  }
  main .page-container article#project section .project-card.active .project-view img {
    width: 0;
    height: 0;
    transform: scale(0);
  }
  main .page-container article#project section .project-card.active .project-view iframe {
    width: 100%;
    height: 100%;
    transform: scale(1);
  }
  main .page-container article#project section .project-card .header-card .toggle-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    position: absolute;
    right: 0.5rem;
    cursor: pointer;
  }
  main .page-container article#project section .project-card .header-card .toggle-card:hover .card-size {
    transition: all ease 0.5s;
    background: var(--theme-color);
    height: 0.1rem;
  }
  main .page-container article#project section .project-card .header-card .toggle-card .card-size {
    width: 2rem;
    height: 2rem;
    transition: all ease 0.5s;
    border: 2px solid var(--theme-color);
    border-radius: 5px;
  }
  main .page-container article#project section .project-card .footer-card {
    width: 50%;
  }
  main .page-container article#project section .project-card .footer-card a {
    height: 55%;
  }
  main footer {
    height: 6vh;
  }
  main footer a {
    height: 65%;
  }
  main footer a .icon-content {
    width: 2rem;
    height: 2rem;
  }
}
body.dark-mode {
  color: #f1f3f8;
  --theme-background: #393b44;
  --theme-color: #f1f3f8;
}
body.dark-mode #nav-content {
  border-color: #f1f3f8;
}
body.dark-mode #nav-content #theme-toggle {
  border-color: #f1f3f8;
  flex-direction: row;
}
body.dark-mode #nav-content #theme-toggle:hover .icon-content {
  background: #f1f3f8;
}
body.dark-mode #nav-content #theme-toggle:hover .icon-content svg#dark-icon {
  width: 0;
  height: 0;
  transform: scale(0);
}
body.dark-mode #nav-content #theme-toggle:hover .icon-content svg#light-icon {
  width: 90%;
  height: 90%;
  transform: scale(1);
}
body.dark-mode #nav-content #theme-toggle .icon-content {
  border-color: #f1f3f8;
}
body.dark-mode #nav-content #theme-toggle .icon-content#light-icon {
  width: 0;
  height: 0;
  transform: scale(0);
}
body.dark-mode #nav-content #navbar a {
  color: #f1f3f8;
}
body.dark-mode #nav-content #navbar a.active {
  color: #393b44;
}
body.dark-mode #nav-content #navbar a.active:hover {
  color: #f1f3f8;
}
body.dark-mode #nav-content #navbar a.active:hover .icon-content svg {
  fill: #f1f3f8;
}
body.dark-mode #nav-content #navbar a.active .icon-content svg {
  fill: #393b44;
}
body.dark-mode #nav-content #navbar a:hover {
  color: #393b44;
}
body.dark-mode #nav-content #navbar a:hover .icon-content {
  color: #393b44;
}
body.dark-mode #nav-content #navbar a:hover .icon-content svg {
  fill: #393b44;
}
body.dark-mode #nav-content #navbar a .icon-content svg {
  fill: #f1f3f8;
}

body.light-mode {
  color: #393b44;
  --theme-background: #f1f3f8;
  --theme-color: #393b44;
}
body.light-mode #nav-content {
  border-color: #393b44;
}
body.light-mode #nav-content #theme-toggle {
  border-color: #393b44;
  flex-direction: row-reverse;
}
body.light-mode #nav-content #theme-toggle:hover .icon-content {
  background: #393b44;
}
body.light-mode #nav-content #theme-toggle:hover .icon-content svg#dark-icon {
  width: 90%;
  height: 90%;
  transform: scale(1);
}
body.light-mode #nav-content #theme-toggle:hover .icon-content svg#light-icon {
  width: 0;
  height: 0;
  transform: scale(0);
}
body.light-mode #nav-content #theme-toggle .icon-content {
  background: #393b44;
  border-color: #393b44;
}
body.light-mode #nav-content #theme-toggle .icon-content svg#dark-icon {
  width: 0;
  height: 0;
  transform: scale(0);
}
body.light-mode #nav-content #theme-toggle .icon-content svg#light-icon {
  width: 90%;
  height: 90%;
  transform: scale(1);
}
body.light-mode #nav-content #navbar a {
  color: #393b44;
}
body.light-mode #nav-content #navbar a.active {
  color: #f1f3f8;
}
body.light-mode #nav-content #navbar a.active:hover {
  color: #393b44;
}
body.light-mode #nav-content #navbar a.active:hover .icon-content svg {
  fill: #393b44;
}
body.light-mode #nav-content #navbar a.active .icon-content svg {
  fill: #f1f3f8;
}
body.light-mode #nav-content #navbar a:hover {
  color: #f1f3f8;
}
body.light-mode #nav-content #navbar a:hover .icon-content svg {
  fill: #f1f3f8;
}
body.light-mode #nav-content #navbar a .icon-content svg {
  fill: #393b44;
}

#nav-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  transition: width ease 0.5s;
  border-right: 2px solid;
  height: 100vh;
  padding: 0 0.5rem;
}
#nav-content.close #navbar-toggle {
  transition: all ease 0.5s;
  width: 80%;
}
#nav-content.close #theme-toggle {
  border: none;
  width: 100%;
}
#nav-content.close #navbar a .icon-content {
  width: 100%;
}
#nav-content.close #navbar a p {
  display: none;
}
#nav-content #navbar-toggle {
  position: relative;
  transition: all ease 0.5s;
  width: 50%;
}
#nav-content #navbar-toggle.active {
  transform: rotate(180deg);
}
#nav-content #navbar-toggle svg {
  fill: #00e8be;
}
#nav-content #theme-toggle {
  display: flex;
  flex-direction: row;
  align-items: center;
  border: 1px solid;
  border-radius: 50px;
  padding: 0.2rem;
}
#nav-content #theme-toggle .icon-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all ease 0.5s;
  border: 1px solid;
  border-radius: 50px;
  padding: 0.2rem;
}
#nav-content #theme-toggle .icon-content svg {
  position: absolute;
  transition: all ease 0.5s;
  fill: #00e8be;
  width: 80%;
  height: 80%;
}
#nav-content #navbar {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 100%;
  height: 75%;
}
#nav-content #navbar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  transition: color ease 0.5s;
  position: relative;
  border: 2px solid #00e8be;
  border-radius: 10px;
  font-weight: bold;
  text-transform: uppercase;
}
#nav-content #navbar a:before {
  content: "";
  position: absolute;
  z-index: -1;
  transition: width ease 0.5s;
  height: 100%;
  width: 0;
  border-radius: 5px;
}
#nav-content #navbar a:hover {
  color: #393b44;
}
#nav-content #navbar a:hover .icon-content svg {
  fill: #393b44;
}
#nav-content #navbar a:hover:before {
  background: #00e8be;
  width: 100%;
}
#nav-content #navbar a .icon-content {
  width: 40%;
  height: 40%;
}
#nav-content #navbar a .icon-content svg {
  transition: all ease 0.5s;
  width: 100%;
  height: 100%;
}

#title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  padding-top: 0.5rem;
}
#title .profile-picture {
  width: 25%;
}
#title .profile-picture img {
  width: 100%;
  height: 100%;
  border-radius: 100px;
}

article {
  display: flex;
  flex-direction: column;
  align-items: center;
}
article h2 {
  font-size: 2rem;
  text-transform: uppercase;
}
article#skill {
  width: 100%;
  height: 100%;
}
article#skill section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  height: 100%;
}
article#skill section .tech-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  height: 45%;
}
article#skill section .tech-content .skill-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
article#skill section .tech-content .skill-card h3 {
  text-transform: uppercase;
}
article#skill section .tech-content .skill-card .icon-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
article#skill section .tech-content .skill-card .icon-content svg {
  width: 100%;
  height: 100%;
  fill: var(--theme-color);
  transition: all ease 0.5s;
}
article#skill section .tech-content .skill-card canvas {
  transition: all ease 0.5s;
}

.page-container {
  overflow: auto;
}
.page-container::-webkit-scrollbar {
  width: 0.5rem;
  border-radius: 50px;
}
.page-container::-webkit-scrollbar-thumb {
  width: 100%;
  border-radius: 10px;
  background: var(--theme-color);
}
.page-container #project {
  width: 100%;
  height: 100%;
}
.page-container #project section {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
  height: 100%;
  flex-wrap: wrap;
  gap: 5rem;
  position: relative;
  margin-right: 0.5rem;
  overflow: auto;
}
.page-container #project section::-webkit-scrollbar {
  width: 0.5rem;
  border-radius: 50px;
  background: none;
}
.page-container #project section::-webkit-scrollbar-thumb {
  width: 100%;
  border-radius: 50px;
  background: #00e8be;
}
.page-container #project section .project-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
  padding: 0.5rem;
  border: 2px solid var(--theme-color);
  border-radius: 10px;
}
.page-container #project section .project-card .header-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 3rem;
}
.page-container #project section .project-card .header-card h3 {
  text-transform: capitalize;
  text-align: center;
  font-size: large;
}
.page-container #project section .project-card .tech-used {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 100%;
}
.page-container #project section .project-card .tech-used li {
  font-size: medium;
}
.page-container #project section .project-card .project-view {
  @incldue flex(row,center,center);
  margin-top: 0.5rem;
  position: relative;
  width: 75%;
  overflow: auto;
}
.page-container #project section .project-card .project-view img, .page-container #project section .project-card .project-view iframe {
  width: 100%;
  height: 100%;
}
.page-container #project section .project-card .project-view iframe {
  width: 0;
  height: 0;
  transform: scale(0);
  display: block;
}
.page-container #project section .project-card .paragraph-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  height: 6rem;
  width: 100%;
  overflow: auto;
}
.page-container #project section .project-card .paragraph-content::-webkit-scrollbar {
  width: 0.5rem;
  border-radius: 50px;
  background: #7A7A7A;
}
.page-container #project section .project-card .paragraph-content::-webkit-scrollbar-thumb {
  width: 100%;
  border-radius: 50px;
  background: var(--theme-color);
}
.page-container #project section .project-card .paragraph-content p {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.5rem;
  padding: 0.5rem;
  width: 100%;
}
.page-container #project section .project-card .footer-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
.page-container #project section .project-card .footer-card a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
}
.page-container #project section .project-card .footer-card a:before, .page-container #project section .project-card .footer-card a:after {
  content: "";
  position: absolute;
  transition: width ease 0.5s;
  background: #00e8be;
  border-radius: 50px;
  z-index: 1;
  height: 0.2rem;
  width: 100%;
}
.page-container #project section .project-card .footer-card a:before {
  top: 0;
  left: 0;
}
.page-container #project section .project-card .footer-card a:after {
  bottom: 0;
  right: 0;
}
.page-container #project section .project-card .footer-card a:hover:before, .page-container #project section .project-card .footer-card a:hover:after {
  width: 0;
}
.page-container #project section .project-card .footer-card a:hover:before {
  left: 0;
}
.page-container #project section .project-card .footer-card a:hover:after {
  right: 0;
}
.page-container #project section .project-card .footer-card a .icon-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.page-container #project section .project-card .footer-card a .icon-content svg {
  width: 100%;
  height: 100%;
  fill: var(--theme-color);
}

body {
  display: flex;
  flex-direction: row;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100vh;
}
main #footbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}
main #footbar a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0.5rem;
  color: var(--theme-color);
}
main #footbar a:before, main #footbar a:after {
  content: "";
  position: absolute;
  transition: width ease 0.5s;
  background: #00e8be;
  border-radius: 50px;
  z-index: 1;
  height: 0.2rem;
  width: 100%;
}
main #footbar a:before {
  top: 0;
  left: 0;
}
main #footbar a:after {
  bottom: 0;
  right: 0;
}
main #footbar a:hover:before, main #footbar a:hover:after {
  width: 0;
}
main #footbar a:hover:before {
  left: 0;
}
main #footbar a:hover:after {
  right: 0;
}
main #footbar a .icon-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
main #footbar a .icon-content svg {
  width: 100%;
  height: 100%;
  fill: var(--theme-color);
}
main #footbar a p {
  margin-left: 0.5rem;
}

body {
  transition: background ease 0.5s;
  --gradient: #7A7A7A;
  background: linear-gradient(140deg, var(--theme-background) 0%, var(--gradient) 100%);
}

/*# sourceMappingURL=style.css.map */
