.hljs a {
  color: #4ec9b0;
  text-decoration: none;
}

.hljs a:hover {
  text-decoration: underline;
}

body {
  background-color: #000000;
  font-family: "Inter", sans-serif;
}
body ::-webkit-scrollbar {
  width: 8px;
}
body ::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
}
body ::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
body ::-webkit-scrollbar-thumb :hover {
  background: rgba(255, 255, 255, 0.15);
}

.body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.body ::-webkit-scrollbar {
  display: none;
}
.body--image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
}
.body--image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.7);
}
.body--content {
  display: grid;
  height: 100vh;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  gap: 10px;
}
@media (max-width: 600px) {
  .body--content {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    grid-auto-flow: row;
  }
}
@media (min-width: 601px) {
  .body--content {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-auto-flow: column;
  }
}
.body--content--title {
  animation: fade-in 1s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
  text-align: center;
  gap: 15px;
  color: white;
}
.body--content--title h1 {
  font-weight: 900;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.body--content--title p {
  font-weight: 600;
  font-size: 20px;
  opacity: 0.9;
}
.body--content--title--tech {
  width: 90%;
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}
.body--content--title--tech p {
  margin: 0;
  padding: 10px 15px;
  border-radius: 10px;
  box-sizing: border-box;
  background-color: #4ec9b0;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
}
.body--content--title--tech p:hover {
  cursor: pointer;
  transform: translateY(-2px);
}
.body--content--animation {
  animation: float 3s ease-in-out infinite alternate;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
  padding: 20px;
  overflow-x: hidden;
}
.body--content--animation .animation--body {
  animation: fade-to 1s ease-in-out;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  width: 90%;
  max-width: 500px;
  overflow-x: scroll;
  box-sizing: border-box;
  border-radius: 12px;
  background-color: #1e1e1e;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border: 1px solid #3e3e42;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 10;
}
.body--content--animation .animation--body--header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 100%;
  padding: 5px 20px;
  box-sizing: border-box;
  background-color: #252526;
  border-bottom: 1px solid #3e3e42;
  min-height: 60px;
}
.body--content--animation .animation--body--header ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.body--content--animation .animation--body--header ul li {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  position: relative;
  transition: all 0.2s ease;
  cursor: pointer;
}
.body--content--animation .animation--body--header ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  opacity: 0.8;
}
.body--content--animation .animation--body--header ul .animation--body--header--red {
  background-color: rgb(255, 54, 56);
}
.body--content--animation .animation--body--header ul .animation--body--header--orange {
  background-color: rgb(255, 179, 54);
}
.body--content--animation .animation--body--header ul .animation--body--header--green {
  background-color: rgb(42, 166, 49);
}
.body--content--animation .animation--body--header #animation--body--header--language {
  font-family: "Fira Code", monospace;
  font-weight: 600;
  color: #d4d4d4;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.body--content--animation .animation--body--content {
  padding: 20px;
  box-sizing: border-box;
  width: 100%;
  overflow: auto;
  max-height: 400px;
}
.body--content--animation .animation--body--content * {
  transition: all 0.3s ease;
}
.body--content--animation .animation--body--content pre {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  font-family: "Fira Code", monospace;
}
.body--content--animation .animation--body--content pre code {
  font-family: "Fira Code", monospace;
  display: block;
  color: #d4d4d4;
  counter-reset: line;
}
.body--content--animation .animation--body--content pre code .line {
  position: relative;
  padding-left: 3.5em;
  margin: 2px 0;
}
.body--content--animation .animation--body--content pre code .line::before {
  counter-increment: line;
  content: counter(line);
  position: absolute;
  left: 0;
  color: #858585;
  text-align: right;
  width: 2.5em;
  padding-right: 1em;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 0.9em;
}
.body--content--animation .animation--body--content pre code .json--s {
  color: #d4d4d4;
}
.body--content--animation .animation--body--content pre code .json--value {
  color: #9cdcfe;
}
.body--content--animation .animation--body--content pre code .json--key {
  color: #ce9178;
}
.body--content--animation .animation--body--content pre code span a {
  color: #4ec9b0;
  text-decoration: none;
  position: relative;
  transition: all 0.2s ease;
}
.body--content--animation .animation--body--content pre code span a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #4ec9b0;
  transition: width 0.3s ease;
}
.body--content--animation .animation--body--content pre code span a:hover {
  color: #68c1ab;
}
.body--content--animation .animation--body--content pre code span a:hover::after {
  width: 100%;
}

.body--content {
  gap: 15px;
  height: 100vh;
  max-height: 100vh;
  overflow-y: auto;
}
.body--content--title {
  padding: 20px 15px;
  gap: 12px;
}
.body--content--title h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1.2;
  margin: 0;
  word-break: break-word;
}
.body--content--title p {
  font-size: clamp(1rem, 3vw, 1.3rem);
  line-height: 1.4;
  margin: 0;
  padding: 0 10px;
}
.body--content--title--tech {
  width: 100%;
  padding: 0 10px;
  gap: 8px;
}
.body--content--title--tech p {
  padding: 8px 14px;
  font-size: clamp(12px, 2.5vw, 14px);
  white-space: nowrap;
}
.body--content--animation {
  padding: 15px;
}
.body--content--animation .animation--body {
  width: 100%;
  max-height: min(400px, 50vh);
  min-height: 100px;
}
.body--content--animation .animation--body--content {
  padding: 15px;
  max-height: calc(min(400px, 50vh) - 60px);
}
.body--content--animation .animation--body--content pre {
  font-size: clamp(12px, 2vw, 14px);
}
.body--content--animation .animation--body--content pre code .line {
  padding-left: 2.5em;
}
.body--content--animation .animation--body--content pre code .line::before {
  width: 1.5em;
  padding-right: 0.5em;
}

@media (min-width: 600px) and (max-width: 900px) {
  .body--content {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(300px, 1fr);
    gap: 20px;
    padding: 20px;
  }
  .body--content--title {
    padding: 30px 20px;
    gap: 15px;
  }
  .body--content--title h1 {
    font-size: clamp(2.5rem, 5vw, 3rem);
  }
  .body--content--title p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    max-width: 80%;
  }
  .body--content--title--tech {
    max-width: 600px;
  }
  .body--content--title--tech p {
    padding: 10px 16px;
    font-size: 14px;
  }
  .body--content--animation {
    padding: 20px;
  }
  .body--content--animation .animation--body {
    max-width: 600px;
    margin: 0 auto;
    max-height: min(450px, 60vh);
  }
  .body--content--animation .animation--body--content {
    max-height: calc(min(450px, 60vh) - 60px);
  }
}
@media (min-width: 901px) and (max-width: 1199px) {
  .body--content {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 30px;
    padding: 30px;
  }
  .body--content--title {
    padding: 0 20px;
    gap: 20px;
  }
  .body--content--title h1 {
    font-size: clamp(2.2rem, 3.5vw, 2.8rem);
  }
  .body--content--title p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 90%;
  }
  .body--content--title--tech {
    max-width: 500px;
  }
  .body--content--title--tech p {
    padding: 10px 16px;
  }
  .body--content--animation {
    padding: 20px;
  }
  .body--content--animation .animation--body {
    max-height: min(500px, 80vh);
  }
  .body--content--animation .animation--body--content {
    max-height: calc(min(500px, 80vh) - 60px);
  }
}
@media (min-width: 1200px) {
  .body--content {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 40px;
    margin: 0 auto;
  }
  .body--content--title {
    gap: 25px;
  }
  .body--content--title h1 {
    font-size: 3rem;
  }
  .body--content--title p {
    font-size: 1rem;
    max-width: 600px;
  }
  .body--content--title--tech {
    max-width: 600px;
  }
  .body--content--title--tech p {
    padding: 12px 20px;
    font-size: 15px;
  }
  .body--content--animation {
    padding: 30px;
  }
  .body--content--animation .animation--body {
    max-width: 600px;
    max-height: min(550px, 85vh);
  }
  .body--content--animation .animation--body--content {
    max-height: calc(min(550px, 85vh) - 60px);
  }
}
@media (max-width: 359px) {
  .body--content {
    gap: 10px;
    padding: 5px;
  }
  .body--content--title {
    padding: 15px 10px;
    gap: 8px;
  }
  .body--content--title h1 {
    font-size: 1.8rem;
  }
  .body--content--title p {
    font-size: 0.9rem;
  }
  .body--content--title--tech p {
    padding: 6px 10px;
    font-size: 11px;
  }
  .body--content--animation {
    padding: 10px;
  }
  .body--content--animation .animation--body {
    min-height: 250px;
  }
  .body--content--animation .animation--body--content {
    padding: 10px;
  }
  .body--content--animation .animation--body--content pre {
    font-size: 11px;
  }
  .body--content--animation .animation--body--header {
    padding: 5px 15px;
    min-height: 50px;
  }
  .body--content--animation .animation--body--header #animation--body--header--language {
    font-size: 12px;
  }
}
@media (min-height: 900px) {
  .body--content--title {
    gap: 30px;
  }
  .body--content--title h1 {
    font-size: clamp(2.5rem, 4vh, 3.5rem);
  }
  .body--content--title p {
    font-size: clamp(1.1rem, 2vh, 1.5rem);
  }
  .body--content--title--tech p {
    padding: 12px 20px;
    font-size: 15px;
  }
  .body--content--animation .animation--body {
    max-height: 600px;
  }
  .body--content--animation .animation--body--content {
    max-height: 540px;
  }
}
@media (max-height: 600px) and (orientation: landscape) {
  .body--content {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 15px;
    padding: 10px;
  }
  .body--content--title {
    padding: 10px;
  }
  .body--content--title h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
  .body--content--title p {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  }
  .body--content--title--tech p {
    padding: 5px 10px;
    font-size: 11px;
  }
  .body--content--animation {
    padding: 10px;
  }
  .body--content--animation .animation--body {
    max-height: min(350px, 90vh);
  }
  .body--content--animation .animation--body--content {
    max-height: calc(min(350px, 90vh) - 60px);
  }
}
@media (min-width: 1600px) {
  .body--content--title h1 {
    font-size: 3rem;
  }
  .body--content--title p {
    font-size: 1rem;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .body--content--title, .body--content--animation {
    transition: all 0.3s ease;
  }
}
@media (prefers-contrast: high) {
  .body--content--title {
    color: #fff;
  }
  .body--content--title--tech p {
    background-color: #4ec9b0;
    color: #000;
  }
}
@keyframes float {
  from {
    transform: translateY(10px);
  }
  to {
    transform: translateY(-10px);
  }
}
@keyframes fade-in {
  from {
    transform: translateY(-1000px);
  }
  to {
    transform: translateY(0px);
  }
}
@keyframes fade-to {
  from {
    transform: translateY(-1000px);
    opacity: 0;
  }
  to {
    transform: translateX(0px);
    opacity: 1;
  }
}/*# sourceMappingURL=index.css.map */