@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");
@import url("https://www.1001fonts.com/digital-7-font.html");
.achievements {
    display: flex;
    width: 80vw;
    height: 50vh;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: row;
}

.achievements p {
    font-size: larger;
    font-weight: 500;
    padding: 1rem;
}
.circle {
  position: fixed;
  bottom: -10rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0px;
  height: 0px;
  border-radius: 70%;
  transform-origin: center bottom;
  scale: 1;
  z-index: 9999;
}

.pink {
  background-color: #F49586;
  z-index: 9999;
}

.white {
  background-color: #fbfbf4;
  z-index: 9999;
}

.expand {
  animation: expandCircle 1.5s ease-in-out forwards;
}

@keyframes expandCircle {
  0% {
    width: 0px;
    height: 0px;
    bottom: -10rem;
  }
  50% {
    width: 2200px;
    height: 2200px;
    bottom: -1100px;
  }
  100% {
    width: 3000px;
    height: 3000px;
    bottom: -1500px;
  }
}
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: bold;
}

#work-section {
  padding: 2rem;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.column.tall {
  /* padding-top: 2rem; */
  padding-bottom: 2rem;
}
.video-box {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.3s ease, filter 0.3s ease;
  border: solid black 3px;
  border-radius: 16px;
}

.video-box:hover {
  cursor: pointer;
}

.video-box.visible {
  opacity: 1;
  transform: translateY(0);
}

video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

        .info-banner {
            position: fixed;
            right: 10%;
            bottom: -300px; /* Start hidden below screen */
            width: 280px;
            z-index: 1000;
        }

        .left-stick {
            height: 13rem;
            width: 0.5rem;
            background-color: brown;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            border: solid black 3px;
        }

        .white-board {
            position: absolute;
            width: 300px;
            height: 150px;
            background-color: #f5f5f5;
            border: solid black 3px;
            border-radius: 6px;
            z-index: 99;
            left: 50%;
            transform: translateX(-50%);
            top: 5%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            box-sizing: border-box;
            text-align: center;
            font-size: 16px;
            font-weight: bold;
            color: #333;
            word-wrap: break-word;
        }

        .right-stick {
            position: absolute;
            height: 13rem;
            width: 0.5rem;
            background-color: brown;
            right: 0%;
            bottom: 0%;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            border: solid black 3px;
        }

        /* Bouncy entrance animation */
        @keyframes bounceUp {
            0% {
                bottom: -300px;
                transform: scale(0.2);
                opacity: 0;
            }
            100% {
                bottom: 0px;
                transform: scale(1);
                opacity: 1;
            }
        }

        .info-banner.bounce-in {
            animation: bounceUp 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
        }

        /* Bounce out animation for hiding */
        @keyframes bounceOut {
            0% {
                bottom: 20px;
                transform: scale(1);
                opacity: 1;
            }
            100% {
                bottom: -300px;
                transform: scale(0.3);
                opacity: 0;
            }
        }

        .info-banner.bounce-out {
            animation: bounceOut 0.1s ease-in forwards;
        }




@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .column.tall {
    padding: 0;
  }
}
.skills-section {
      padding: 0;
      text-align: center;
    }

    .skills-section h2 {
      font-size: 3rem;
      margin-bottom: 10px;
    }

    .skills-section p {
      font-size: 1.1rem;
      margin-bottom: 30px;
      opacity: 1;
    }

    .divider {
      width: 80%;
      height: 4px;
      margin: 0 auto 50px;
      background: linear-gradient(90deg, #000000, #000000);
      border-radius: 2px;
    }

    .skills-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 30px;
      min-width: 80vw;
      margin: 0 auto;
    }

    .skill-card {
      background: rgba(223,221,169,0.8);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px;
      padding: 20px;
      transition: transform 0.3s ease, background 0.3s;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .skill-card:hover {
      transform: translateY(-8px) scale(1.05);
      background: rgba(223,221,169,0.5);
    }

    .skill-card i {
      font-size: 4rem;
      margin-bottom: 12px;
      color: #3d3f25;
    }

    .skill-card span {
      font-size: 1rem;
      margin-top: auto;
      color: #000000;
    }

    @media (min-width: 768px) {
      .skills-grid {
        grid-template-columns: repeat(6, 1fr);
      }
    }
body {
  margin: 0;
  padding: 0;
  background-attachment: scroll; /* or fixed, if you want parallax feel */
  background-color: #fbfbf4; /* your base background color */
  font-family: "Poppins", "Segoe UI", "Helvetica Neue", sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

@font-face {
  font-family: "DigitalClock";
  src: url("./assets/fonts/DS-DIGIB.TTF") format("truetype");
  font-weight: normal;
  font-style: normal;
}

.shelf-1 {
  position: absolute;
  top: 10rem;
  left: 10rem;
  display: flex;
  flex-direction: column;
}
.shelf-1 img {
  height: 8rem;
  position: relative;
  padding: 0;
  margin: 0;
  bottom: 0;
  cursor: pointer;
}
.shelf-2 img {
  height: 4rem;
  position: relative;
  padding: 0;
  margin: 0;
  top: 8px;
  cursor: pointer;
}
a {
  cursor: pointer;
}
.shelf-2 {
  position: absolute;
  top: 24rem;
  left: 7rem;
  display: flex;
  flex-direction: column;
}

.shelf-3 {
  position: absolute;
  top: 16rem;
  right: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stand {
  width: 10rem;
  height: 1.2rem;
  border-radius: 6px;
  box-shadow: inset -8px -5px 0 rgba(0, 0, 0, 0.3);
  border: solid black 3px;
  background-color: #ac7333;
  z-index: 3;
}
.shelf-2 .stand {
  width: 16rem;
}

.hair {
  width: 200px;
  height: 120px;
  position: relative;
  background-color: transparent; /* make base invisible or use grey */
}

.blob {
  position: absolute;
  background-color: black;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  animation: sway 1s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.2s);
  opacity: 0.95; /* optional for layering effect */
  z-index: 99;
}

.wallpaper-container {
  position: relative;
  top: -5rem;
  /* height: 40vh; */
}

.swe-text {
  font-family: "Anton", sans-serif;
  font-size: 12.25vw;
  padding: 0;
  margin: auto auto 0;
  display: inline-block;
  font-weight: 500;
  color: #F49586;
  cursor: pointer;
  pointer-events: none;
  line-height: 1;
  letter-spacing: 0px;
  text-align: center;
}

/* Positioning each blob to simulate messy hair */
#hair-blob-1 {
  top: 16.03px;
  left: 14.67px;
}
#hair-blob-2 {
  top: 45.96px;
  left: 23.69px;
}
#hair-blob-3 {
  top: 64.12px;
  left: 2.26px;
}
#hair-blob-4 {
  top: 39.54px;
  left: 0px;
}
#hair-blob-5 {
  top: 16.03px;
  left: 47.38px;
}
#hair-blob-6 {
  top: 12.82px;
  left: 71.08px;
}
#hair-blob-7 {
  top: 54.51px;
  left: 46.26px;
}
#hair-blob-8 {
  top: 69.47px;
  left: 23.69px;
}
#hair-blob-9 {
  top: 0px;
  left: 50.77px;
}
#hair-blob-10 {
  top: 14.96px;
  left: 113.95px;
}
#hair-blob-11 {
  top: 14.96px;
  left: 93.64px;
}
#hair-blob-12 {
  top: 0px;
  left: 83.49px;
}
#hair-blob-13 {
  top: 54.51px;
  left: 132px;
}
#hair-blob-14 {
  top: 32.06px;
  left: 132px;
}
#hair-blob-15 {
  top: 38.47px;
  left: 118.46px;
}
#hair-blob-16 {
  top: 69.21px;
  left: 53.74px;
}
#hair-blob-17 {
  top: 66px;
  left: 96px;
}
#hair-blob-18 {
  top: 69.47px;
  left: 117.33px;
}
#hair-blob-19 {
  top: 51.3px;
  left: 77.85px;
}
#hair-blob-20 {
  top: 69px;
  left: 39px;
}
#hair-blob-21 {
  top: 69px;
  left: 43px;
}

@keyframes sway {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(3px, -3px) rotate(10deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

.first-page {
  position: relative;
  height: 100vh;
  width: 100vw;
}.avatar-section {
  position: absolute;
  height: 300px; /* Was 40vh */
  width: 400px;  /* Was 50vw */
  top: 350px;    /* Adjust according to layout */
  background-color: transparent;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.face {
  position: relative;
  cursor: pointer;
  background-color: bisque;
  height: 149px; /* 9.3125rem → 9.3125 * 16 = ~149px */
  width: 131px;  /* 8.1875rem */
  border: 4px solid black;
  box-shadow: inset -4px -4px 0 rgba(0, 0, 0, 0.2);

  border-bottom-right-radius: 70px; /* Adjusted proportionally */
  border-bottom-left-radius: 70px;
  top: -50px;  /* -3.125rem */
  left: -10px; /* -0.625rem */
}

.eyelid-left {
  position: absolute;
  border: 3px solid #000000;
  width: 43px;  /* 2.6875rem */
  top: 70px;    /* 4.375rem */
  display: flex;
  justify-content: center;
  left: 6px;
}

.eyelid-right {
  position: absolute;
  border: 3px solid black;
  width: 43px;
  top: 70px;
  display: flex;
  justify-content: center;
  right: 6px;
}

.eye {
  position: absolute;
  background-color: black;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  width: 20px;
  height: 20px;
}

.mouth {
  position: absolute;
  border: 3px solid black;
  width: 46px;
  bottom: 30px;
  left: 40px;
}

/* .books {
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-direction: row;
  position: relative;
  top: 2px;
  z-index: -99;
} */

/* .resume {
  width: 2rem;
  height: 5rem;
  background-color: #b26492;
  border: solid black 2px;
  border-right: none;
    box-shadow: inset -4px -4px 0 rgba(0, 0, 0, 0.2);

}
.about-me {
  width: 2rem;
  height: 8rem;
  background-color: #ac7333;
  border: solid black 2px;
    box-shadow: inset -4px -4px 0 rgba(0, 0, 0, 0.2);

}
.skills {
    width: 2rem;
  height: 5rem;
  background-color: #b26492;
  border: solid black 2px;
    box-shadow: inset -4px -4px 0 rgba(0, 0, 0, 0.2);

  border-left: none;
} */

.eye-glass {
  position: absolute;
  width: 100%;

  top: 3.125rem;
  display: flex;
}

.eye-glass-left {
  position: relative;
  border: 0.25rem solid black;
  width: 3.75rem;
  box-shadow: inset -4px -4px 0 rgba(0, 0, 0, 0.2);

  background-color: burlywood;
  height: 2.8125rem;
  border-radius: 30%;
  left: 0rem;
}

.eye-glass-right {
  position: relative;
  border: 0.25rem solid black;
  box-shadow: inset -4px -4px 0 rgba(0, 0, 0, 0.2);

  width: 3.75rem;
  height: 2.8125rem;
  background-color: burlywood;
  border-radius: 30%;
  right: 0rem;
}

.rim {
  position: relative;
  background-color: black;
  width: 0.625rem;
  height: 0.25rem;
  top: 0.75rem;
}

.surprise-button i {
  font-size: 3rem;
  padding: 0;
  color: black;
  margin: 0;
}

.icon-container {
  width: 100%;
  height: 60px;
  border: none;
}

.icon {
  cursor: pointer;
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 30px;
  overflow: hidden;
}
.icon::before,
.icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.25s ease;
  border-radius: 30px;
  border: none;
}
.icon i {
  position: relative;
  color: black;
  font-size: 40px;
  transition: all 0.25s ease;
}

.icon-fill::before {
  transition-duration: 0.5s;
  box-shadow: inset 0 0 0 0px lightgray;
}
.icon-fill:hover::before {
  box-shadow: inset 0 0 0 60px lightgray;
}

.icon-enter::after {
  box-shadow: inset 0 0 0 1px #eb9532;
}
.icon-enter::before {
  border-radius: 0;
  margin-left: -100%;
  box-shadow: inset 0 0 0 60px #eb9532;
}
.icon-enter:hover::before {
  margin-left: 0;
}

.icon-expand::after {
  box-shadow: inset 0 0 0 1px #c82647;
}
.icon-expand::before {
  background: #c82647;
  box-shadow: inset 0 0 0 60px #2d2c3e;
}
.icon-expand:hover::before {
  box-shadow: inset 0 0 0 1px #2d2c3e;
}

.icon-collapse::before {
  border-radius: 0;
}
.icon-collapse:hover::before {
  box-shadow: inset 0 30px 0 0 #8cc63f, inset 0 -30px 0 0 #8cc63f;
}
.icon-collapse::after {
  box-shadow: inset 0 0 0 1px #8cc63f;
}

.icon-rotate {
  box-shadow: inset 0 0 0 1px #7e3661;
}
.icon-rotate::after,
.icon-rotate::before {
  border: 0px solid transparent;
}
.icon-rotate:hover::before {
  transition: border-top-width 0.3s ease, border-top-color 0.3s ease;
  border-width: 60px;
  border-top-color: #7e3661;
}
.icon-rotate:hover::after {
  transition: border-left-width 0.3s ease, border-left-color 0.3s ease;
  border-width: 60px;
  border-left-color: #7e3661;
}
.icon-rotate:hover {
  transition: background 0.001s ease 0.3s;
  background: #7e3661;
}
.icon-rotate i {
  z-index: 1;
}

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

.about-me h2 {
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 1rem;
  font-weight: 600;
}

.about-me p {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.6;
  color: #000000;
}

.row-icons {
  display: flex;
  flex: row;
  justify-content: space-around;
  position: relative;
  top: 8px;
  z-index: 2;
}

.section {
  max-height: fit-content;
  min-height: 100vh;
  scroll-snap-align: start;
  display: flex;
  position: relative;
  align-items: center;
  flex-direction: column;
  justify-content: center;

  /* font-size: 3rem; */
}

.section-title {
  padding-top: 0.5rem;
}

body::-webkit-scrollbar {
  display: none;
}

/* For Firefox */
body {
  scrollbar-width: none;
}

/* General fallback */
body {
  -ms-overflow-style: none; /* IE and Edge */
}
.watch-container {
  display: flex;
  flex-direction: row;
}
.watch {
  font-family: "DigitalClock", sans-serif;
  border: solid rgb(61, 61, 61) 0.3rem;
  border-bottom-left-radius: 0.7rem;
  border-top-left-radius: 0.7rem;
  box-shadow: inset -4px -4px 0 rgba(0, 0, 0, 0.2);
  width: 5rem;
  background-color: #0000005b;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: xx-large;
}
.watch-back {
  border: solid rgb(61, 61, 61) 0.3rem;
  border-bottom-right-radius: 0.7rem;
  border-top-right-radius: 0.7rem;
  width: 0.5rem;
  background-color: #000000bb;
  height: 2.5rem;
}

.hide {
  display: none;
}

/* .dropdown-menu {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
} */

.dropdown-menu.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown {
  position: fixed;
  display: inline-block;
  top: 3rem;
  right: 3rem;
  z-index: 5;
}

.dropdown-toggle {
  background-color: #F49586;
  color: #fbfbf4;
  padding: 1rem;
  width: 2rem;
  height: 2rem;
  box-shadow: inset -4px -4px 0 rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  text-align: center;
}

.dropdown-menu {
    opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: absolute;
  top: 70px;
  left: 0;
  background-color: #F49586;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  flex-direction: column;
  box-shadow: inset -5px -5px 0 rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
  z-index: 999;
}

.dropdown-menu a {
  text-decoration: none;
  padding: 1rem 1rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 1rem;

  transition: all 0.3s;
}

.dropdown-menu a:hover {
  background-color: #F49586;
}

/* .dropdown:hover .dropdown-menu {
  display: flex;
} */

.icon-circle {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #333;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Base styles */
.about-me {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  padding-top: 4rem;
}

.header-wrapper {
  display: flex;
  width: 50vw;
  align-items: center;
}

.header-wrapper a {
  all: unset;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}



.profile-circle {
  width: 80px;
  height: 80px;
  background-color: #5E5F52;
  margin-right: 2rem;
  border-radius: 50%;
  transform: scale(0);
}

.about-line {
  position: relative;
  height: 4px;
  background-color: #5E5F52;
  transform-origin: left;
  margin-left: 40px;
  margin-right: 40px;
  width: 0;
  top: -4px;
}

.about-me h1 {
  padding: 0;
  margin: 0;
}

/* Animation classes */
.jelly-appear {
  animation: jellyPop 0.5s ease-out forwards;
}

.line-expand {
  animation: lineGrow 0.5s ease-out forwards;
  animation-delay: 0.3s;
}

.about-content {
  width: 50vw;
  padding-left: 50px;
  padding-top: 1rem;
  text-align: justify;
}

/* Keyframes */
@keyframes jellyPop {
  0% {
    transform: scale(0);
  }
  40% {
    transform: scale(1.0, 0.9 );
  }
  60% {
    transform: scale(0.9, 1.1);
  }
  80% {
    transform: scale(1.05, 0.95);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes lineGrow {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.timeline {
            position: relative;
            padding: 20px 0;
        }

        /* Main timeline line */
        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: 0;
            bottom: 0;
            width: 3px;
            background: #000000;
            z-index: 1;
        }

        .timeline-item {
            position: relative;
            margin: 60px 0;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

        .timeline-item:nth-child(1) { animation-delay: 0.2s; }
        .timeline-item:nth-child(2) { animation-delay: 0.4s; }
        .timeline-item:nth-child(3) { animation-delay: 0.6s; }
        .timeline-item:nth-child(4) { animation-delay: 0.8s; }

        .timeline-content {
            background: #DFDDA9;
            border: 2px solid #b8a082;
            border-radius: 15px;
            padding: 25px;
            width: 25rem;
            position: relative;
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(139, 115, 85, 0.2);
            transition: all 0.3s ease;
        }

        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(139, 115, 85, 0.3);
            background: rgba(220, 210, 180, 0.9);
        }

        /* Left side items */
        .timeline-item:nth-child(odd) .timeline-content {
            margin-left: 0;
            margin-right: auto;
            transform: translateX(-50px);
        }

        /* Right side items */
        .timeline-item:nth-child(even) .timeline-content {
            margin-left: auto;
            margin-right: 0;
            transform: translateX(50px);
        }

        .timeline-item:nth-child(odd) .timeline-content:hover {
            transform: translateX(-50px) translateY(-5px);
        }

        .timeline-item:nth-child(even) .timeline-content:hover {
            transform: translateX(50px) translateY(-5px);
        }

        /* Timeline dots */
        .timeline-dot {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 16px;
            height: 16px;
            background: #000000;
            border: 4px solid #f4f1e8;
            border-radius: 50%;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .timeline-item:hover .timeline-dot {
            width: 20px;
            height: 20px;
            background: #000000;
        }

        /* Connection lines */
        .timeline-item::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 30px;
            height: 2px;
            background: #000000;
            z-index: 1;
        }

        .timeline-item:nth-child(odd)::after {
            right: 50%;
            margin-right: 8px;
        }

        .timeline-item:nth-child(even)::after {
            left: 50%;
            margin-left: 8px;
        }

        .company-name {
            font-size: 1.4rem;
            font-weight: 600;
            color: #000000;
            margin-bottom: 8px;
        }

        .job-title {
            font-size: 1rem;
            color: #000000;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .duration {
            font-size: 0.9rem;
            color: #000000;
            margin-bottom: 15px;
            font-style: italic;
        }

        .description {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #000000;
        }

        .skills {
            margin-top: 15px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .skill-tag {
            background: rgba(139, 115, 85, 0.2);
            color: #5d4e37;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            border: 1px solid rgba(139, 115, 85, 0.3);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .timeline::before {
                left: 30px;
            }
            
            .timeline-content {
                width: calc(100% - 60px);
                margin-left: 60px !important;
                margin-right: 0 !important;
                transform: none !important;
            }
            
            .timeline-content:hover {
                transform: translateY(-5px) !important;
            }
            
            .timeline-dot {
                left: 30px;
            }
            
            .timeline-item::after {
                left: 30px;
                margin-left: 8px;
                margin-right: 0;
                right: auto;
            }
        }

/*# sourceMappingURL=styles.min.css.map */

@media (min-resolution: 1.1dppx) {
  .face {
    transform: scale(0.9);
    transform-origin: top;
  }
}

.loader {
  position: absolute;
  z-index: 999;
  background-color: #F49586;
  width: 100vw;
  height: 100vh;
}

#mobile-message {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fbfbf4;
  color: #333;
  z-index: 10000;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  #mobile-message {
    display: flex;
  }

  .dropdown,
  .section,
  .info-banner,
  .about-me,
  .loader,
  .circle {
    display: none !important;
  }

  body {
    overflow: hidden;
  }
}
