@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@300;400;500;600&display=swap');

:root {
  --pink: #FDB0C0;
  --chip-image: url("https://lh5.googleusercontent.com/y58mIMZC-IwE41TNehTaXikfD26LtOLULH3BRTAnFxSB33UHwDwf5wVfVvwVwsju1uo=w2400");
  --whiteish-letters: #dafffd;
  --menu-image: url(https://lh6.googleusercontent.com/B3GZqaB4CtIuOZqveBVoBvWZPBZQ7bkkyTEXs9kBCWaop3KXDi5GaHa_zi9Dekl_igc=w2400);
  --project-border-image: url("https://lh5.googleusercontent.com/zgccmEHip1xVXgGhdxVPYB6skDCyHX5LpfqmHHw09nbybd9en_GQdBxOlUlXFSnURks=w2400");
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'IBM Plex Mono', sans-serif;
  color: white;
  font-size: 14px;
}

body {
  background-color: black;
  width: 100vw;
  height: 100vh;
}

main {
  padding: 50px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.menu {
  width: 220px;
  display: flex;
  flex-direction: column;
}

.menu>button {
  width: 120px;
  height: 40px;
  padding-bottom: 5px;
  margin-top: 20px;
  background-color: transparent;
  background-size: contain;
  background-repeat: no-repeat;
  transition: width 0.3s;
  border: none;
  position: relative;
}

.menu>button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--menu-image);
  background-size: contain;
  background-repeat: no-repeat;
  filter: brightness(0.5) sepia(100%) hue-rotate(300deg) saturate(1.5);
  pointer-events: auto;
  z-index: -1;
}

.menu>.btn:hover {
  color: var(--pink);
  background-color: transparent;
  box-shadow: none;
  width: 140px;
}

.scene {
  width: 600px;
  height: 600px;
  perspective: 1800px;
}

a {
  text-decoration: none;
  pointer-events: auto;
  cursor: pointer;
}

.cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transform: translateZ(-300px);
  transition: transform 1s;
}

.cube.show-front { transform: translateZ(-300px) rotateY(0deg); }
.cube.show-right { transform: translateZ(-300px) rotateY(-90deg); }
.cube.show-back { transform: translateZ(-300px) rotateY(-180deg); }
.cube.show-left { transform: translateZ(-300px) rotateY(90deg); }
.cube.show-top { transform: translateZ(-300px) rotateX(-90deg); }
.cube.show-bottom { transform: translateZ(-300px) rotateX(90deg); }

.df.fd-c { display: flex; flex-direction: column; }
.df.fd-r { display: flex; flex-direction: row; }

.cube-face {
  position: absolute;
  width: 600px;
  height: 600px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0,0,0,0.8);
  background-size: contain;
  background-repeat: no-repeat;
  overflow-y: auto;
  overflow-x: hidden; 
}

.cube-face {
  pointer-events: none;
}

.cube-face a,
.cube-face button {
  pointer-events: auto;
}

.cube-face::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--chip-image);
  background-size: contain;
  background-repeat: no-repeat;
  filter: brightness(0.5) sepia(100%) hue-rotate(300deg) saturate(1.5);
  pointer-events: auto;
  z-index: -1;
}

.cube-face > * { position: relative; z-index: 1; }
.cube-face > p { margin-top: 0; }

.cube-face-front { transform: rotateY(0deg) translateZ(300px); }

.intro-wrapper {
  margin-bottom: 20px;
  align-items: center;
}

.image {
  border-radius: 50%;
  overflow: hidden;
  width: 150px;
  height: 150px;
  border: 1px dashed var(--pink);
  justify-content: center;
  align-items: center;
  position: relative;
}

.image-wrapper {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
}

img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.intro {
  width: 70%;
  margin-left: 20px;
}

.intro-heading {
  font-size: 3rem;
  font-family: 'IBM Plex Mono', monospace;
  width: 100%;
  color: var(--whiteish-letters);
  padding-bottom: 20px;
  line-height: 3rem;
}

.intro-heading>span {
  font-size: inherit;
  font-family: inherit;
  color: var(--pink);
}

.intro-text {
  color: var(--whiteish-letters);
  width: 90%;
  padding: 5px 0;
}

.buttons>button {
  color: var(--whiteish-letters);
  border: 2px solid var(--pink);
  background-color: transparent;
  padding: 5px 5px;
  margin: 5px;
  box-shadow: 0 0 10px var(--pink);
  transition: box-shadow 0.3s;
}

button:hover {
  cursor: pointer;
  box-shadow: 0 0 15px var(--pink);
  background-color: var(--pink);
}

.cube-face-back { transform: rotateY(180deg) translateZ(300px); }

.work-edu-section { margin-bottom: 40px; }

.work-edu-heading {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.2rem;
  padding-bottom: 10px;
  font-weight: 400;
}

.work-edu-heading>i {
  font-size: 1.2rem;
  color: var(--pink);
}

.work-edu-heading.date { color: var(--pink); }

.work-edu-info {
  width: 70%;
  margin-left: 20px;
}

.work-edu-info>ul {
  margin-left: 20px;
  font-size: 0.9rem;
}

.work-edu-info>ul>li { font-size: 0.9rem; }
.work-edu-heading.company { width: 100%; }

.cube-face-right { transform: rotateY(90deg) translateZ(300px); }
.cube-face-left { transform: rotateY(-90deg) translateZ(300px); }
.cube-face-top { transform: rotateX(90deg) translateZ(300px); }
.cube-face-bottom { transform: rotateX(-90deg) translateZ(300px); }

.social-media-btns {
  margin-top: 10px;
  margin-bottom: 40px;
}

.social-media-btns > a {
  display: inline-block;
  margin: 5px 10px;
  text-decoration: none;
  pointer-events: auto;
  cursor: pointer;
}

.social-media-btns > a > i {
  font-size: 2rem;
  color: white;
  transition: color 0.3s;
  pointer-events: auto;
}

.social-media-btns > a:hover > i {
  cursor: pointer;
  color: var(--pink);
}

.projects {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.project-border {
  width: 120px;
  height: 120px;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px;
  position: relative;
}

.project-border::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--project-border-image);
  background-size: contain;
  background-repeat: no-repeat;
  filter: brightness(0.5) sepia(100%) hue-rotate(300deg) saturate(1.5);
  pointer-events: auto;
  z-index: -1;
}

.project-wrapper {
  width: 90px;
  height: 90px;
  position: relative;
  z-index: 1;
}

.visit-wrapper {
  background-color: rgba(0,0,0,0.5);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  position: relative;
  z-index: 10;
}

.project-border:nth-of-type(1)>.project-wrapper {
  background-image: url("https://media.istockphoto.com/id/1277822133/photo/futuristic-scifi-battle-ships-hover-over-an-alien-planet.jpg?s=612x612&w=0&k=20&c=JSZtYp2TtvE19LWxOV1mhgfpvZX6Y-jxlC-KRwYi6cs=");
  background-size: cover;
  background-repeat: no-repeat;
}
.project-border:nth-of-type(2)>.project-wrapper {
  background-image: url("https://www.e-booksdirectory.com/categoryimg/448.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.project-border:nth-of-type(3)>.project-wrapper {
  background-image: url("https://www.e-booksdirectory.com/categoryimg/448.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.project-border:nth-of-type(4)>.project-wrapper {
  background-image: url("https://reviewedwords.com/wp-content/uploads/2020/03/science-fiction-2907434_1280.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.project-border:nth-of-type(5)>.project-wrapper {
  background-image: url("https://res.cloudinary.com/lmn/image/upload/e_sharpen:100/f_auto,fl_lossy,q_auto/v1/gameskinnyc/c/i/n/cinematography-mass-effectromeda-wallpaper-daf81.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.project-border:nth-of-type(6)>.project-wrapper {
  background-image: url("https://cdnb.artstation.com/p/assets/images/images/012/219/935/large/gaetan-toussaint-b2a2-toussaint-g-envi.jpg?1533666111");
  background-size: cover;
  background-repeat: no-repeat;
}

.app-title {
  background-color: rgba(0,0,0,0.7);
  padding: 3px 7px;
  margin-bottom: 10px;
  pointer-events: auto;
}

.visit-app {
  background-color: rgba(0,0,0,0.7);
  padding: 5px 5px;
  pointer-events: auto;
  cursor: pointer;
}
.visit-app:hover { text-decoration: underline; }

.visit-app,
.visit-app>i { font-size: 0.8rem; pointer-events: auto; }

.visit-app>i { color: var(--pink); pointer-events: auto; }
.app-title { pointer-events: auto; }

.certificate-section {
  width: 80%;
  justify-content: start;
  align-items: center;
  margin-left: 15px;
  margin-bottom: 10px;
}

.cube-face-left > div:nth-last-of-type(2) { margin-bottom: 20px; }

.certificate-date {
  font-size: 1.5rem;
  color: var(--pink);
}
.certificate-heading {
  font-size: 1.5rem;
  margin-left: 20px;
}

/* Mobile Navigation & Swipe Hint */
.mobile-nav { display: none; }

.swipe-hint {
  display: none;
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.8);
  color: var(--pink);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  pointer-events: auto;
  z-index: 100;
  animation: fadeHint 4s ease-in-out forwards;
  animation-delay: 1s;
  border: 1px solid var(--pink);
}

.swipe-hint span {
  color: var(--pink);
  font-size: 1.2rem;
  margin-left: 5px;
}

@keyframes fadeHint {
  0% { opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

/* Landscape Orientation Support */
@media (max-width: 1024px) and (orientation: landscape) {
  main {
    flex-direction: row;
    gap: 20px;
    padding: 15px;
  }

  .scene {
    width: 380px;
    height: 380px;
    perspective: 1200px;
  }

  .cube { transform: translateZ(-190px); }

  .cube.show-front { transform: translateZ(-190px) rotateY(0deg); }
  .cube.show-right { transform: translateZ(-190px) rotateY(-90deg); }
  .cube.show-back { transform: translateZ(-190px) rotateY(-180deg); }
  .cube.show-left { transform: translateZ(-190px) rotateY(90deg); }
  .cube.show-top { transform: translateZ(-190px) rotateX(-90deg); }
  .cube.show-bottom { transform: translateZ(-190px) rotateX(90deg); }

  .cube-face {
    width: 380px;
    height: 380px;
    padding: 25px;
  }

  .cube-face-front { transform: rotateY(0deg) translateZ(190px); }
  .cube-face-back { transform: rotateY(180deg) translateZ(190px); }
  .cube-face-right { transform: rotateY(90deg) translateZ(190px); }
  .cube-face-left { transform: rotateY(-90deg) translateZ(190px); }
  .cube-face-top { transform: rotateX(90deg) translateZ(190px); }
  .cube-face-bottom { transform: rotateX(-90deg) translateZ(190px); }

  .mobile-nav {
    flex-direction: column;
    width: auto;
    gap: 6px;
    margin-top: 0;
  }

  .mobile-nav > button {
    width: 80px;
    height: 30px;
    font-size: 11px;
  }

  .swipe-hint { display: none; }

  .intro-heading {
    font-size: 1.6rem;
    line-height: 1.6rem;
  }

  .work-edu-heading { font-size: 0.9rem; }

  .work-edu-info > ul,
  .work-edu-info > ul > li { font-size: 0.8rem; }
}

@media (max-width: 768px) and (orientation: landscape) {
  .scene {
    width: 300px;
    height: 300px;
    perspective: 900px;
  }

  .cube { transform: translateZ(-150px); }

  .cube.show-front { transform: translateZ(-150px) rotateY(0deg); }
  .cube.show-right { transform: translateZ(-150px) rotateY(-90deg); }
  .cube.show-back { transform: translateZ(-150px) rotateY(-180deg); }
  .cube.show-left { transform: translateZ(-150px) rotateY(90deg); }
  .cube.show-top { transform: translateZ(-150px) rotateX(-90deg); }
  .cube.show-bottom { transform: translateZ(-150px) rotateX(90deg); }

  .cube-face {
    width: 300px;
    height: 300px;
    padding: 20px;
  }

  .cube-face-front { transform: rotateY(0deg) translateZ(150px); }
  .cube-face-back { transform: rotateY(180deg) translateZ(150px); }
  .cube-face-right { transform: rotateY(90deg) translateZ(150px); }
  .cube-face-left { transform: rotateY(-90deg) translateZ(150px); }
  .cube-face-top { transform: rotateX(90deg) translateZ(150px); }
  .cube-face-bottom { transform: rotateX(-90deg) translateZ(150px); }

  .intro-heading {
    font-size: 1.3rem;
    line-height: 1.3rem;
  }

  .work-edu-heading { font-size: 0.8rem; }

  .work-edu-info > ul,
  .work-edu-info > ul > li { font-size: 0.7rem; }
}

/* Extra small devices */
@media (max-width: 360px) {
  .scene {
    width: 260px;
    height: 260px;
    perspective: 800px;
  }

  .cube { transform: translateZ(-130px); }

  .cube.show-front { transform: translateZ(-130px) rotateY(0deg); }
  .cube.show-right { transform: translateZ(-130px) rotateY(-90deg); }
  .cube.show-back { transform: translateZ(-130px) rotateY(-180deg); }
  .cube.show-left { transform: translateZ(-130px) rotateY(90deg); }
  .cube.show-top { transform: translateZ(-130px) rotateX(-90deg); }
  .cube.show-bottom { transform: translateZ(-130px) rotateX(90deg); }

  .cube-face {
    width: 260px;
    height: 260px;
    padding: 10px;
  }

  .cube-face-front { transform: rotateY(0deg) translateZ(130px); }
  .cube-face-back { transform: rotateY(180deg) translateZ(130px); }
  .cube-face-right { transform: rotateY(90deg) translateZ(130px); }
  .cube-face-left { transform: rotateY(-90deg) translateZ(130px); }
  .cube-face-top { transform: rotateX(90deg) translateZ(130px); }
  .cube-face-bottom { transform: rotateX(-90deg) translateZ(130px); }

  .intro-heading {
    font-size: 1.1rem;
    line-height: 1.1rem;
  }

  .intro-text { font-size: 10px; }

  .work-edu-heading { font-size: 0.7rem; }

  .work-edu-info > ul,
  .work-edu-info > ul > li { font-size: 0.6rem; }

  .certificate-date,
  .certificate-heading { font-size: 0.7rem; }

  .project-border {
    width: 65px;
    height: 65px;
    margin: 2px;
  }

  .project-wrapper {
    width: 55px;
    height: 55px;
  }

  .app-title,
  .visit-app { font-size: 0.5rem; }

  .mobile-nav > button {
    min-width: 38px;
    height: 26px;
    font-size: 9px;
    padding: 2px 4px;
  }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  main {
    padding: 20px;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
  }

  .menu {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
  }

  .menu > button {
    display: none !important;
    width: 100px;
    height: 35px;
    margin-top: 5px;
    font-size: 12px;
  }

  .mobile-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
  }

  .mobile-nav > button {
    width: 90px;
    height: 32px;
    background-color: transparent;
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    position: relative;
    color: white;
    font-size: 12px;
    padding-bottom: 3px;
    transition: width 0.3s, color 0.3s;
  }

  .mobile-nav > button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--menu-image);
    background-size: contain;
    background-repeat: no-repeat;
    filter: brightness(0.5) sepia(100%) hue-rotate(300deg) saturate(1.5);
    pointer-events: auto;
    z-index: -1;
  }

  .mobile-nav > button:hover,
  .mobile-nav > button.active {
    color: var(--pink);
    width: 100px;
  }

  .swipe-hint { display: block; }

  .scene {
    width: 500px;
    height: 500px;
    perspective: 1200px;
  }

  .cube { transform: translateZ(-250px); }

  .cube.show-front { transform: translateZ(-250px) rotateY(0deg); }
  .cube.show-right { transform: translateZ(-250px) rotateY(-90deg); }
  .cube.show-back { transform: translateZ(-250px) rotateY(-180deg); }
  .cube.show-left { transform: translateZ(-250px) rotateY(90deg); }
  .cube.show-top { transform: translateZ(-250px) rotateX(-90deg); }
  .cube.show-bottom { transform: translateZ(-250px) rotateX(90deg); }

  .cube-face {
    width: 500px;
    height: 500px;
    padding: 30px;
  }

  .cube-face-front { transform: rotateY(0deg) translateZ(250px); }
  .cube-face-back { transform: rotateY(180deg) translateZ(250px); }
  .cube-face-right { transform: rotateY(90deg) translateZ(250px); }
  .cube-face-left { transform: rotateY(-90deg) translateZ(250px); }
  .cube-face-top { transform: rotateX(90deg) translateZ(250px); }
  .cube-face-bottom { transform: rotateX(-90deg) translateZ(250px); }

  .intro-wrapper { flex-direction: column; }

  .image {
    width: 120px;
    height: 120px;
    margin-top: 20px;
  }

  .image-wrapper {
    width: 110px;
    height: 110px;
  }

  img { height: 110px; }

  .intro {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }

  .intro-heading {
    font-size: 2rem;
    line-height: 2rem;
  }

  .intro-text { width: 100%; }

  .work-edu-heading { font-size: 1rem; }

  .work-edu-info {
    width: 100%;
    margin-left: 0;
  }

  .work-edu-info > ul { margin-left: 15px; }

  .work-edu-section { margin-bottom: 20px; }

  .certificate-section {
    width: 100%;
    margin-left: 0;
  }

  .certificate-date { font-size: 1rem; }

  .certificate-heading {
    font-size: 1rem;
    margin-left: 10px;
  }

  .projects { margin-bottom: 20px; }

  .project-border {
    width: 100px;
    height: 100px;
    margin: 8px;
  }

  .project-wrapper {
    width: 80px;
    height: 80px;
  }

  .app-title { font-size: 0.7rem; }

  .visit-app { font-size: 0.7rem; }

  .social-media-btns > a > i {
    font-size: 1.5rem;
    margin: 5px;
  }
}

@media (max-width: 768px) {
  main {
    padding: 10px;
    justify-content: center;
    align-items: center;
  }

  .menu {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
  }

  .menu > button {
    display: none !important;
    width: 80px;
    height: 28px;
    font-size: 10px;
    margin-top: 3px;
  }

  .scene {
    width: 300px;
    height: 300px;
    perspective: 1000px;
  }

  .cube { transform: translateZ(-150px); }

  .cube.show-front { transform: translateZ(-150px) rotateY(0deg); }
  .cube.show-right { transform: translateZ(-150px) rotateY(-90deg); }
  .cube.show-back { transform: translateZ(-150px) rotateY(-180deg); }
  .cube.show-left { transform: translateZ(-150px) rotateY(90deg); }
  .cube.show-top { transform: translateZ(-150px) rotateX(-90deg); }
  .cube.show-bottom { transform: translateZ(-150px) rotateX(90deg); }

  .cube-face {
    width: 300px;
    height: 300px;
    padding: 15px;
  }

  .cube-face-front { transform: rotateY(0deg) translateZ(150px); }
  .cube-face-back { transform: rotateY(180deg) translateZ(150px); }
  .cube-face-right { transform: rotateY(90deg) translateZ(150px); }
  .cube-face-left { transform: rotateY(-90deg) translateZ(150px); }
  .cube-face-top { transform: rotateX(90deg) translateZ(150px); }
  .cube-face-bottom { transform: rotateX(-90deg) translateZ(150px); }

  .image {
    width: 80px;
    height: 80px;
  }

  .image-wrapper {
    width: 75px;
    height: 75px;
  }

  img { height: 75px; }

  .intro-heading {
    font-size: 1.2rem;
    line-height: 1.2rem;
    padding-bottom: 10px;
  }

  .intro-text { font-size: 11px; }

  .work-edu-heading { font-size: 0.65rem; }

  .work-edu-info { margin-left: 0; }

  .work-edu-info > ul {
    margin-left: 10px;
    font-size: 0.55rem;
  }

  .work-edu-info > ul > li { font-size: 0.55rem; }

  .work-edu-section { margin-bottom: 6px; }

  .certificate-date { font-size: 0.65rem; }

  .certificate-heading {
    font-size: 0.65rem;
    margin-left: 5px;
  }

  .project-border {
    width: 70px;
    height: 70px;
    margin: 3px;
  }

  .project-wrapper {
    width: 60px;
    height: 60px;
  }

  .app-title,
  .visit-app { font-size: 0.65rem; }

  .social-media-btns > a > i { font-size: 1.2rem; }
}

@media (max-width: 480px) {
  body {
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
  }

  main {
    padding: 8px;
    justify-content: center;
    align-items: center;
  }

  .menu {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
  }

  .menu > button {
    display: none !important;
    width: 70px;
    height: 22px;
    font-size: 9px;
    margin-top: 2px;
  }

  .scene {
    width: 250px;
    height: 250px;
    perspective: 850px;
  }

  .cube { transform: translateZ(-125px); }

  .cube.show-front { transform: translateZ(-125px) rotateY(0deg); }
  .cube.show-right { transform: translateZ(-125px) rotateY(-90deg); }
  .cube.show-back { transform: translateZ(-125px) rotateY(-180deg); }
  .cube.show-left { transform: translateZ(-125px) rotateY(90deg); }
  .cube.show-top { transform: translateZ(-125px) rotateX(-90deg); }
  .cube.show-bottom { transform: translateZ(-125px) rotateX(90deg); }

  .cube-face {
    width: 250px;
    height: 250px;
    padding: 12px;
  }

  .cube-face-front { transform: rotateY(0deg) translateZ(125px); }
  .cube-face-back { transform: rotateY(180deg) translateZ(125px); }
  .cube-face-right { transform: rotateY(90deg) translateZ(125px); }
  .cube-face-left { transform: rotateY(-90deg) translateZ(125px); }
  .cube-face-top { transform: rotateX(90deg) translateZ(125px); }
  .cube-face-bottom { transform: rotateX(-90deg) translateZ(125px); }

  .intro-wrapper { gap: 8px; }

  .image {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
  }

  .image-wrapper {
    width: 65px;
    height: 65px;
  }

  img { height: 65px; }

  .intro {
    width: 100%;
    margin-left: 0;
  }

  .intro-heading {
    font-size: 1rem;
    line-height: 1rem;
    padding-bottom: 8px;
  }

  .intro-text {
    font-size: 10px;
    width: 100%;
  }

  .work-edu-heading { font-size: 0.65rem; }

  .work-edu-info {
    width: 100%;
    margin-left: 0;
  }

  .work-edu-info > ul {
    margin-left: 8px;
    font-size: 0.5rem;
  }

  .work-edu-info > ul > li { font-size: 0.5rem; }

  .work-edu-section { margin-bottom: 6px; }

  .certificate-date { font-size: 0.6rem; }

  .certificate-heading {
    font-size: 0.6rem;
    margin-left: 3px;
  }

  .project-border {
    width: 60px;
    height: 60px;
    margin: 3px;
  }

  .project-wrapper {
    width: 50px;
    height: 50px;
  }

  .app-title,
  .visit-app { font-size: 0.55rem; }

  .certificate-section { margin-bottom: 8px; }

  .social-media-btns {
    margin-top: 5px;
    margin-bottom: 20px;
  }

  .social-media-btns > a > i {
    font-size: 1rem;
    margin: 3px 5px;
  }
}
