@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --blue: #699BF7;
  --red: #FC5151;
  --light-yellow: #FFE100;
  --yellow: #FFCE42;
  --green: #2ECC71;
  --violet: #7D3CFF;
  --behance: #0057ff;
  --purple: #9B59B6;
}

::-webkit-scrollbar {
  width: 6px;
}

body {
  font-size: 16px;
  font-family: "Oswald", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  scrollbar-width: thin;
}
body * {
  box-sizing: border-box;
}

h1 {
  font-size: 1.8rem;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  color: black;
}

h2 {
  font-family: "Oswald", sans-serif;
  font-weight: normal;
  color: black;
  font-size: 1.2rem;
}

h3 {
  font-weight: 300;
  font-family: "Oswald", sans-serif;
  color: #858585;
  font-size: 1.2rem;
}

p {
  font-family: "Roboto", sans-serif;
  color: #858585;
}

button {
  outline: none;
  height: 40px;
  border-radius: 0;
  border: solid 3px #000000;
  font-family: "Oswald", sans-serif;
  font-weight: normal;
  font-size: 1.2rem;
  line-height: 0;
  padding: 0 0.5rem;
  padding-bottom: 6px;
  box-shadow: inset 0 -6px 0 rgba(0, 0, 0, 0.2);
}
button:active {
  height: 34px;
  padding-bottom: 0;
  box-shadow: none;
  transform: translate(0, 6px);
}

.card {
  width: 280px;
  height: 343px;
  border: solid 3px black;
  border-radius: 10px;
  display: grid;
  grid-template-rows: 280px auto;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.card .illustration {
  display: grid;
  place-content: center;
}
.card:hover {
  margin-top: -20px;
}

body {
  background-color: white;
  height: 100vh;
}

a {
  text-decoration: none;
}

header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
  z-index: 100;
}
header div.💻 {
  width: 100%;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 10px;
}
header div.💻 *:last-child {
  margin-left: auto;
}
header div.📱 {
  display: none;
  align-items: center;
}
header div.📱 .burger-button {
  margin-left: auto;
  display: inline-block;
  cursor: pointer;
  z-index: 10;
}
header div.📱 .bar1,
header div.📱 .bar2,
header div.📱 .bar3 {
  width: 20px;
  height: 2px;
  background-color: #333;
  margin: 6px 0;
  transition: 0.4s;
  transform-origin: 10px 1px;
}
header div.📱 .show .bar1 {
  transform: translateY(4px) rotate(-45deg);
}
header div.📱 .show .bar2 {
  transform: translateY(-4px) rotate(45deg);
}
header div.📱 nav {
  transform: translateX(-100vw);
}
header div.📱 .show ~ nav {
  transform: translate(0, 0);
}
header div.📱 .show ~ nav .side {
  animation-play-state: running !important;
}
header div.📱 nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: white;
  display: grid;
  place-items: center;
  transition: all 400ms ease-in-out;
}
header div.📱 nav ul {
  margin: 0;
  padding: 0;
  outline: none;
  width: clamp(220px, 60%, 240px);
}
header div.📱 nav li {
  list-style: none;
  background-color: black;
}
header div.📱 nav li a {
  background-color: black;
  border: 8px solid black;
  margin: 1rem 0;
  display: flex;
  gap: 0 9px;
  flex-direction: inherit;
}
header div.📱 nav li a .side {
  background-image: url("../stars.svg");
  background-repeat: repeat-x;
  animation: cylinders 100s linear infinite var(--orientation), shrinkY 1000ms linear forwards;
  animation-play-state: paused !important;
  animation-delay: calc(400ms + var(--order) * 1s);
  background-color: var(--color);
}
header div.📱 nav li:nth-child(2n+1) {
  flex-direction: row-reverse;
}
header div.📱 nav li:nth-child(2n+1) h2 {
  justify-content: flex-end;
}
header div.📱 nav h2 {
  width: 100%;
  display: flex;
  background-color: white;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 36px;
  padding: 0 1rem;
  margin: 0;
}

.url_button {
  border-radius: 10px;
  border: solid 3px #000000;
  padding: 0.2rem 0.8rem;
  padding-left: 0.3rem;
  display: grid;
  grid-template-columns: auto auto;
  place-content: center;
}
.url_button h3 {
  padding: 0;
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: white;
}
.url_button i {
  color: white;
  display: grid;
  place-content: center;
}
@keyframes jump {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(0);
  }
}
.url_button#resume:hover i {
  animation: jump 1s ease-in-out infinite;
}

section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start;
}
section ul.grid {
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  margin: 0;
  padding: 0;
}
section ul.grid li {
  list-style: none;
  width: 100%;
  aspect-ratio: 8/10;
  max-width: 350px;
}
section ul.grid li .card {
  border: solid 3px #000000;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
section ul.grid li .card * {
  animation-play-state: var(--play-state);
}
section ul.grid li .card:hover * {
  --play-state: running;
}
section ul.grid li .card .title {
  background-color: white;
  display: grid;
  place-items: center;
  border-top: solid 3px #000000;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
section ul.grid li .card .title * {
  margin: 0.5rem;
}
section ul.grid li .card .content {
  width: 100%;
  display: grid;
  place-items: center;
}
section ul.grid li .card .content#tictactoe {
  background: var(--bg);
}
section ul.grid li .card .content#tictactoe #xo * {
  visibility: hidden;
}
section ul.grid li .card .content#tictactoe #xo #xo1 {
  animation-name: appear;
  animation-duration: 0.2s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}
section ul.grid li .card .content#tictactoe #xo #xo2 {
  animation-name: appear;
  animation-duration: 0.2s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}
section ul.grid li .card .content#tictactoe #xo #xo3 {
  animation-name: appear;
  animation-duration: 0.2s;
  animation-delay: 1.5s;
  animation-fill-mode: forwards;
}
section ul.grid li .card .content#tictactoe #xo #xo4 {
  animation-name: appear;
  animation-duration: 0.2s;
  animation-delay: 2s;
  animation-fill-mode: forwards;
}
section ul.grid li .card .content#tictactoe #xo #xo5 {
  animation-name: appear;
  animation-duration: 0.2s;
  animation-delay: 2.5s;
  animation-fill-mode: forwards;
}
section ul.grid li .card .content#tictactoe #xo #xo6 {
  animation-name: appear;
  animation-duration: 0.2s;
  animation-delay: 3s;
  animation-fill-mode: forwards;
}
section ul.grid li .card .content#tictactoe #xo #xo7 {
  animation-name: appear;
  animation-duration: 0.2s;
  animation-delay: 3.5s;
  animation-fill-mode: forwards;
}
section ul.grid li .card .content#tictactoe #xo #xo8 {
  animation-name: appear;
  animation-duration: 0.2s;
  animation-delay: 4s;
  animation-fill-mode: forwards;
}
section ul.grid li .card .content#tictactoe #xo #xo9 {
  animation-name: appear;
  animation-duration: 0.2s;
  animation-delay: 4.5s;
  animation-fill-mode: forwards;
}
section ul.grid li .card .content#enigma {
  background: var(--bg);
}
section ul.grid li .card .content#enigma #code {
  width: 80%;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  grid-template-rows: repeat(3, 1fr);
  grid-template-columns: repeat(3, 1fr);
}
section ul.grid li .card .content#enigma #code b {
  font-size: 36px;
  color: black;
}
section ul.grid li .card .content#enigma #code b:nth-of-type(1), section ul.grid li .card .content#enigma #code b:nth-of-type(3), section ul.grid li .card .content#enigma #code b:nth-of-type(5), section ul.grid li .card .content#enigma #code b:nth-of-type(6), section ul.grid li .card .content#enigma #code b:nth-of-type(7), section ul.grid li .card .content#enigma #code b:nth-of-type(9) {
  color: white;
}
section ul.grid li .card .content#enigma #code b::after {
  content: "0";
  animation-play-state: inherit;
  animation-name: crypto;
  animation-duration: 6s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
  animation-delay: calc(var(--order) * 600ms);
}
section ul.grid li .card .content#twitter {
  background: var(--bg);
}
section ul.grid li .card .content#twitter #cactus #eyes {
  animation: cactus 5s linear forwards infinite;
}
section ul.grid li .card .content#twitter #bird #eye {
  animation: blink 5s linear forwards infinite;
}
section ul.grid li .card .content#mondrian {
  background: var(--bg);
}
section ul.grid li .card .content#mondrian svg {
  border: solid 3px #000000;
  width: 280px;
  height: 280px;
}
section ul.grid li .card .content#mondrian svg * {
  visibility: hidden;
  animation-play-state: inherit;
  animation-name: appear;
  animation-duration: 0.4s;
  animation-delay: calc(var(--order) * 500ms);
  animation-fill-mode: forwards;
}
section ul.grid li .card .content#k-means {
  background: var(--bg);
  width: 100%;
  height: 100%;
}
section ul.grid li .card .content#k-means svg {
  margin-left: auto;
  margin-right: auto;
  max-height: 70%;
  max-width: 70%;
}
section ul.grid li .card .content#k-means circle {
  fill: white;
  transition: fill ease-in-out 1s;
}
section ul.grid li .card .content#k-means:hover #group_1 > circle {
  fill: #2ECC71;
}
section ul.grid li .card .content#k-means:hover #group_2 > circle {
  fill: #F5BF02;
}
section ul.grid li .card .content#k-means:hover #group_3 > circle {
  fill: #FC5151;
}
section ul#more {
  display: flex;
  gap: 3rem;
  width: 100%;
  list-style: none;
}
section ul#more ul {
  list-style: none;
  padding: 0;
}
section ul#more ul a {
  color: black;
  text-decoration: none;
}
section ul#more ul a:hover {
  text-decoration: underline;
}

footer {
  font-size: 14px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
footer p {
  padding-left: 1rem;
  font-size: 12px;
  color: #858585;
  margin: 0;
  line-height: 27px;
}
footer a {
  color: #858585;
  padding-left: 1rem;
}
footer a:first-child {
  padding-left: 0;
}
footer a:hover {
  color: black;
}
footer button {
  margin-right: 1rem;
}
footer #behance {
  background-color: #0057ff;
  color: white;
}

@keyframes blink {
  0%, 100% {
    transform: scale(1, 0.05);
  }
  5%, 95% {
    transform: scale(1, 1);
  }
}
@keyframes cactus {
  0% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(-4px);
  }
  50% {
    transform: translateX(-4px);
  }
  60% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes crypto {
  5% {
    content: "E";
  }
  15% {
    content: "N";
  }
  25% {
    content: "I";
  }
  35% {
    content: "G";
  }
  45% {
    content: "M";
  }
  55% {
    content: "A";
  }
  65% {
    content: "0";
  }
  0%, 100% {
    content: "0";
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes appear {
  from {
    visibility: hidden;
  }
  to {
    visibility: visible;
  }
}
@keyframes shrinkY {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes cylinders {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -10000px 0;
  }
}
@media (max-width: 768px) {
  header div.💻 {
    display: none;
  }
  header div.📱 {
    display: flex;
  }
  .card {
    min-height: 100vw;
  }
}/*# sourceMappingURL=index.css.map */