@keyframes blobAnimation {
  100% {
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }
  25% {
    border-radius: 60%;
    transform: translate(-45%, -45%);
  }
  50% {
    border-radius: 70%;
    transform: translate(-40%, -40%);
  }
  75% {
    border-radius: 60%;
    transform: translate(-45%, -45%);
  }
}
@keyframes fluid {
  0% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
  }
  100% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }
}
@keyframes morph {
  0% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
  }
  100% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }
}
.fade-in-scale {
  opacity: 0;
  transform: scale(0.8);
  animation: fadeInScale 0.8s forwards;
}

@keyframes fadeInScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.fade-in-scale:nth-child(1) {
  animation: fadeInScale 2.4s forwards 0.2s;
  animation-delay: 0.6s;
}

.fade-in-scale:nth-child(2) {
  animation: fadeInScale 2.6s forwards 0.2s;
  animation-delay: 1s;
}

.fade-in-bottom {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInBottom 2.2s ease-in forwards;
}

@keyframes fadeInBottom {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-bottom:nth-child(1) {
  animation-delay: 0.2s;
}

.tech-container .fade-in-bottom {
  animation-delay: 1.2s;
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeInLeft 1s ease-out forwards;
}

.fade-in-left-about {
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeInLeftAbout 1s ease-in-out forwards;
  animation-delay: 0.9s;
}

.fade-in-left:nth-child(1) {
  animation-delay: 2s;
}

.fade-in-left:nth-child(2) {
  animation-delay: 2.2s;
}

.fade-in-left:nth-child(3) {
  animation-delay: 2.4s;
}

.fade-in-left:nth-child(4) {
  animation-delay: 2.6s;
}

.fade-in-left:nth-child(5) {
  animation-delay: 2.8s;
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeftAbout {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-in-right {
  opacity: 0;
  transform: translateX(20px);
  animation: fadeInRight 1s ease-out forwards;
}

.fade-in-right-about {
  opacity: 0;
  transform: translateX(20px);
  animation: fadeInRightAbout 1s ease-in-out forwards;
  animation-delay: 0.9s;
}

@keyframes fadeInRightAbout {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.arrow path {
  fill: transparent;
  stroke: 10;
  stroke: #92d0fc;
  stroke-dasharray: 210;
  stroke-dashoffset: 0;
}

.arrow path:hover {
  animation: animate-arrow 1s linear forwards;
}

@keyframes animate-arrow {
  0% {
    stroke-dashoffset: 0;
  }
  40% {
    stroke-dashoffset: 210;
  }
  80% {
    stroke-dashoffset: 420;
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 420;
    fill: #92d0fc;
  }
}
.slide-in-right {
  opacity: 0;
  transform: translateX(100%);
  animation: slideInRight 1s forwards;
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.slide-in-left {
  opacity: 0;
  transform: translateX(-100%);
  animation: slideInLeft 1s forwards;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-in-left-angle {
  transform: translateY(30px) translateX(30px) scale(0.8);
  animation: 1s ease-out 0.1s 1 normal forwards running leftAngle;
}

.fade-in-right-angle {
  transform: scale(0.9) translateY(40px);
  animation: 1s ease-out 0.1s 1 normal forwards running rightAngle;
}

@keyframes leftAngle {
  100% {
    opacity: 1;
    transform: translateY(0px) scale(1);
  }
}
@keyframes rightAngle {
  100% {
    opacity: 1;
    transform: translateY(0px) translateX(0px);
  }
}
.fade-in-up {
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInUp ease-in-out 1s forwards;
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    z-index: 1;
  }
}
.hiddenEl {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(100%);
  transition: all 1s;
}

.show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}

.delayAnimation:nth-child(2) {
  transition-delay: 200ms;
}

.delayAnimation:nth-child(3) {
  transition-delay: 300ms;
}

.delayAnimation:nth-child(4) {
  transition-delay: 400ms;
}

.delayAnimation:nth-child(5) {
  transition-delay: 500ms;
}

.delayAnimation:nth-child(6) {
  transition-delay: 600ms;
}

.delayAnimation:nth-child(7) {
  transition-delay: 700ms;
}

.delayAnimation:nth-child(8) {
  transition-delay: 800ms;
}

@font-face {
  font-family: "Tanker-Regular";
  src: url("/fonts/Tanker_Complete/Fonts/WEB/fonts/Tanker-Regular.woff2") format("woff2"), url("/fonts/Tanker_Complete/Fonts/WEB/fonts/Tanker-Regular.woff") format("woff"), url("/fonts/Tanker_Complete/Fonts/WEB/fonts/Tanker-Regular.ttf") format("truetype");
  font-style: normal;
}
@font-face {
  font-family: "Erode-Variable";
  src: url("/fonts/Erode_Complete/Fonts/WEB/fonts/Erode-Regular.woff2") format("woff2"), url("/fonts/Erode_Complete/Fonts/WEB/fonts/Erode-Regular.woff") format("woff"), url("/fonts/Erode_Complete/Fonts/WEB/fonts/Erode-Regular.ttf") format("truetype");
  font-style: normal;
}
/* Reset Styles */
html,
body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

* {
  color: inherit;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #0f0f0f;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

a {
  text-decoration: none;
}

hr {
  border: 0;
  border-top: 1px dotted #efefef;
}

h1 {
  color: #e7e7e7;
  font-family: "Tanker-Regular";
  font-size: 6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.08rem;
  text-align: center;
}

h2 {
  color: #e7e7e7;
  font-family: "Tanker-Regular";
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.06rem;
}

p {
  color: #dbdbdb;
  font-family: "Erode-Variable";
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

img,
picture,
video {
  max-width: 100%;
}

button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #92d0fc;
  border-radius: 5px;
  color: #dbdbdb;
  font-family: "Erode-Variable";
  padding: 0.8rem 1.7rem 0.8rem 1.7rem;
  background-color: #18181B;
  font-size: 1.25rem;
  cursor: pointer;
  flex-shrink: 0;
}

button:hover {
  box-shadow: 0px 0px 0.3360468745px 0px #92d0fc, 0px 0px 0.672093749px 0px #92d0fc, 0px 0px 2.3523280621px 0px #92d0fc, 0px 0px 4.7046561241px 0px #92d0fc, 0px 0px 8.0651254654px 0px #92d0fc, 0px 0px 14.1139688492px 0px #92d0fc;
  color: #e7e7e7;
}

/* toggle btn */
#toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  margin: 1em 3em;
  cursor: pointer;
  z-index: 100;
  padding-bottom: 1em;
}

.menu-button {
  display: flex;
  align-self: center;
  justify-self: center;
  cursor: pointer;
  background-color: transparent;
  border: none;
  width: 80px;
  height: 80px;
  position: absolute;
  top: 0;
  right: 0.5em;
  border-radius: 100%;
}

.menu-button:hover {
  background-color: transparent;
  border: none;
  box-shadow: none;
}

nav {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 55%;
  z-index: 10;
  transform: translateX(100%);
  transition: transform ease-out 250ms;
}

nav ul {
  font-family: "Tanker-Regular";
  color: #e7e7e7;
  font-size: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  min-height: 100%;
  background-color: #18181B;
}

nav a {
  padding: 12.5vh 4em;
  display: inline-block;
  line-height: 0;
}

nav li {
  min-width: 100%;
  border-bottom: 0.5px solid #dbdbdb;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav a:hover {
  color: #92d0fc;
}

.close-icon {
  display: none;
}

.nav-is-open nav {
  transform: translateX(0);
}
.nav-is-open .open-icon {
  display: none;
}
.nav-is-open .close-icon {
  display: block;
}

.btn-outline {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 0.5px solid #e7e7e7;
}

.btn-outline-1 {
  border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  animation: morph 4s linear infinite;
}

.btn-outline-2 {
  border-radius: 53% 47% 43% 57%/51% 39% 61% 49%;
}

@media only screen and (max-width: 575px) {
  nav ul {
    font-size: 2rem;
  }
  .btn-outline {
    width: 50px;
    height: 50px;
  }
  #toggle-btn {
    right: -30px;
    margin: 1em 2em;
  }
  nav ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  nav a {
    padding: 12.5vh 0.5em;
  }
}
@media only screen and (min-width: 576px) and (max-width: 1024px) {
  nav ul {
    font-size: 2.25rem;
  }
  .btn-outline {
    width: 80px;
    height: 80px;
  }
  #toggle-btn {
    right: -30px;
  }
  nav ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  nav a {
    padding: 12.5vh 0.5em;
  }
}
.blob {
  width: 200px;
  height: 200px;
  background: linear-gradient(90deg, #de6161 0%, #2657eb 100%);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: blobAnimation 10s infinite ease-in-out;
}

.fluid {
  animation: blobAnimation 4s infinite ease-in-out;
}

.hero-bg {
  animation: fluid 8s ease-in-out infinite;
  background: linear-gradient(90deg, #de6161 0%, #2657eb 100%);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  height: 35rem;
  position: absolute;
  transition: all 0.5s ease-in-out;
  width: 35rem;
}

.hero-container {
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  justify-content: center;
  position: relative;
}

.blur {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background: rgba(13, 13, 13, 0.3);
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
  z-index: 1;
}

.page-content {
  z-index: 10;
  width: 100vw;
  height: 100vh;
}

.img-container {
  justify-self: center;
  align-self: center;
  grid-column: 2/3;
  background-image: url(/assets/personal_website_hero_image_2025.jpg);
  -webkit-animation: morph 8s ease-in-out infinite;
  animation: morph 8s ease-in-out infinite;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 53% 49% 29% 77%/60% 30% 70% 40%;
  height: 15rem;
  width: 15rem;
  position: relative;
  margin: 1em;
  z-index: 3;
}

.socials-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1em;
  max-width: min-content;
  grid-column: 1/2;
  grid-row: 1/2;
  padding-top: 20em;
  align-self: center;
  justify-self: center;
  animation-delay: 1.4s;
}
.socials-container svg {
  transition: filter 0.2s ease-in-out;
}
.socials-container svg:hover {
  filter: drop-shadow(0px 0px 0.0641250014px #7ac4fc) drop-shadow(0px 0px 0.1282500029px #7ac4fc) drop-shadow(0px 0px 0.44887501px #7ac4fc) drop-shadow(0px 0px 0.89775002px #7ac4fc) drop-shadow(0px 0px 1.5390000343px #7ac4fc) drop-shadow(0px 0px 2.6932499409px #7ac4fc);
}

.title-wrapper {
  grid-column: 2/3;
  display: grid;
  grid-template-columns: auto min-content auto;
  grid-template-rows: min-content min-content min-content;
  height: 50vh;
}
.title-wrapper h1 {
  align-self: center;
  opacity: 0;
}
.title-wrapper h1:nth-child(1) {
  text-align: right;
  margin-right: -1.2em;
  animation-delay: 0.3s;
}
.title-wrapper h1:nth-child(3) {
  text-align: left;
  margin-left: -1.2em;
  animation-delay: 0.6s;
}
.title-wrapper h2 {
  justify-self: center;
  align-self: center;
  text-align: center;
  grid-column: 2/3;
  grid-row: 2/3;
  width: 24.4375rem;
  opacity: 0;
  margin-bottom: 0.2rem;
  animation-delay: 0.9s;
}
.title-wrapper p {
  font-size: 2rem;
  text-align: center;
  grid-column: 2/3;
  grid-row: 3/4;
  width: 31.6875rem;
  margin-bottom: 1rem;
  opacity: 0;
  animation-delay: 1.2s;
}

.contact-button {
  position: relative;
  text-align: center;
  cursor: pointer;
  justify-self: center;
  grid-column: 2/3;
  margin-top: 0.4em;
}

.contact-button span {
  position: relative;
  display: inline-block;
  color: #e7e7e7;
  width: 14rem;
  height: 3rem;
  padding: 0.5em 1em;
  border-radius: 5px;
  border: 2px solid #92d0fc;
  background: #18181b;
  font-size: 1.25rem;
  text-decoration: none;
  transition: transform 0.15s linear;
}

.contact-button span:hover {
  box-shadow: 0px 0px 0.33605px 0px #92d0fc, 0px 0px 0.67209px 0px #92d0fc, 0px 0px 2.35233px 0px #92d0fc, 0px 0px 4.70466px 0px #92d0fc, 0px 0px 8.06513px 0px #92d0fc, 0px 0px 14.11397px 0px #92d0fc;
}

.projects-container {
  width: fit-content;
  height: max-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.tech-container {
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 1em;
}
.tech-container .icons-container {
  display: flex;
  align-items: center;
  margin-top: 0.5em;
  gap: 3em;
}
.tech-container .icons-container .icon {
  aspect-ratio: 1/1;
  object-fit: contain;
}

.images-container {
  position: relative;
  overflow: hidden;
  margin-top: 1.5em;
}
.images-container img:nth-child(2) {
  position: absolute;
  right: 0;
  bottom: 0;
}
.images-container .overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  filter: grayscale(45%);
  border-radius: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
  transform: translateY(100%);
  opacity: 0;
  z-index: -1;
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition-timing-function: linear;
  transition-duration: 600ms;
}
.images-container .overlay .black-text {
  color: black;
  margin-bottom: 0.5em;
}
.images-container .overlay .white-text {
  color: white;
  margin-bottom: 0.5em;
}
.images-container .overlay .view-btn {
  cursor: pointer;
  width: 12.25rem;
  height: 2.6rem;
}

.images-container:hover .overlay {
  border-radius: 20px;
  opacity: 1;
  z-index: 1;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transition-timing-function: linear;
  transition-duration: 500ms;
  --tw-translate-y: 100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.background-graphic1 {
  position: absolute;
  left: 65%;
  top: 70%;
}

.background-graphic2 {
  position: absolute;
  left: 90%;
  top: 70%;
}

.background-graphic3 {
  position: absolute;
  left: 20%;
  top: 10%;
}

.projects-page-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  padding-top: 5em;
}
.projects-page-container .projects-title {
  margin: 5em auto -8em auto;
}
.projects-page-container .slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
}
.projects-page-container .slide-container {
  display: none;
}
.projects-page-container .slide-container.active {
  display: block;
}
.projects-page-container #prev,
.projects-page-container #next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  width: 50px;
  border-radius: 100%;
  line-height: 50px;
  font-size: 25px;
  text-align: center;
  cursor: pointer;
  font-weight: bolder;
}
.projects-page-container #prev {
  left: 30px;
}
.projects-page-container #next {
  right: 30px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 50rem;
  margin: 0 auto;
  padding-top: 2em;
}

.about-title-wrapper {
  width: 55rem;
  height: fit-content;
  margin: 4em 0 2em 0;
}

.about-text-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 0.8ch;
  margin-top: 1em;
}

.about-images-container {
  width: 100%;
  height: min-content;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: space-evenly;
  margin: 2em 0 4em 0;
}
.about-images-container .image {
  width: 100%;
  height: fit-content;
}
.about-images-container img {
  border-radius: 10px;
  position: relative;
}

.image:nth-child(1) img {
  transform: rotate(-15deg);
  transition: 0.3s ease-in-out;
  margin-left: 10em;
}

.image:nth-child(2) img {
  transition: 0.3s ease-in-out;
  z-index: 1;
}

.image:nth-child(3) img {
  transition: 0.3s ease-in-out;
  transform: rotate(15deg);
  margin-left: -10em;
}

.image:nth-child(1):hover img {
  transform: translateX(-25px) translateY(-35px) rotate(-20deg);
  transition: 0.3s ease-in-out;
}

.image:nth-child(2):hover img {
  z-index: 2;
  transform: translateY(-5px) scale(1.1);
  transition: 0.3s ease-in-out;
}

.image:nth-child(3):hover img {
  transform: translateX(25px) translateY(-35px) rotate(20deg);
  transition: 0.3s ease-in-out;
}

.reveal {
  opacity: 0;
  transition: opacity 0.6s;
  display: inline-block;
  width: max-content;
  height: min-content;
  font-size: 1.25rem;
  letter-spacing: 0.1rem;
  line-height: 1.6rem;
  color: #dbdbdb;
}

.skills-container {
  width: 100%;
}
.skills-container h2 {
  margin: 1em 0 1em 0;
}
.skills-container .icons-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4em;
}
.skills-container .icons-container .icon {
  aspect-ratio: 1/1;
  object-fit: contain;
}

.about-cta-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100vw;
  max-height: min-content;
  padding: 4em;
  margin-top: 2em;
  gap: 2em;
  background: linear-gradient(180deg, rgba(35, 37, 38, 0) 0%, rgba(65, 67, 69, 0.35) 100%);
}
.about-cta-container h1 {
  font-size: 4rem;
  margin-bottom: -0.2em;
}
.about-cta-container p {
  font-size: 2rem;
}
.about-cta-container button {
  width: 12.25rem;
  height: 2.6rem;
}

@media only screen and (max-width: 414px) {
  .hero-container {
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    padding: 1em;
  }
  .title-wrapper {
    margin: 0 auto;
    grid-column: 2/3;
    display: grid;
    grid-template-columns: auto min-content auto;
    grid-template-rows: min-content min-content min-content;
    align-items: center;
    justify-content: center;
    height: max-content;
    width: 100%;
  }
  .title-wrapper h1 {
    font-size: 2rem;
    align-self: center;
    opacity: 0;
  }
  .title-wrapper h1:nth-child(1) {
    width: max-content;
    text-align: right;
    animation-delay: 0.3s;
    margin-right: -2em;
  }
  .title-wrapper h1:nth-child(3) {
    width: max-content;
    text-align: left;
    animation-delay: 0.6s;
    margin-left: -2em;
  }
  .title-wrapper h2 {
    width: max-content;
    font-size: 1.25rem;
    justify-self: center;
    align-self: center;
    text-align: center;
    grid-column: 2/3;
    grid-row: 2/3;
    opacity: 0;
    margin-bottom: 0.2rem;
    animation-delay: 0.9s;
  }
  .title-wrapper p {
    justify-self: center;
    align-self: center;
    font-size: 1.25rem;
    text-align: center;
    grid-column: 2/3;
    grid-row: 3/4;
    max-width: 15rem;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation-delay: 1.2s;
  }
  .socials-container {
    margin: 2em auto 0 auto;
    display: flex;
    flex-direction: row;
    align-self: center;
    justify-self: center;
    padding: 0 2em 0 0.2em;
    gap: 2em;
  }
  .socials-container svg {
    max-width: 1.5rem;
  }
  .img-container {
    height: 6rem;
    width: 6rem;
  }
  .hero-bg {
    height: 15rem;
    width: 15rem;
  }
  .contact-button {
    display: grid;
  }
  .contact-button span {
    align-self: center;
    justify-content: center;
    width: 10rem;
    height: 2.2rem;
    font-size: 0.85rem;
  }
  .projects-page-container {
    width: 100vw;
  }
  .projects-title {
    min-width: 100%;
  }
  .projects-title h1 {
    font-size: 2.25rem;
  }
  .images-container {
    padding-top: 2em;
    margin: 0;
  }
  .images-container img:first-child {
    width: 22rem;
    height: 13rem;
  }
  .images-container img:nth-child(2) {
    width: 4rem;
    height: 8rem;
  }
  #prev {
    padding-top: 4em;
  }
  #next {
    padding-top: 4em;
  }
  .arrow {
    width: 30px;
    height: 25px;
  }
  .tech-container {
    width: 100%;
    margin: 0 auto;
  }
  .tech-container h2 {
    font-size: 2rem;
    max-width: min-content;
    padding: 3em 0 0.5em 0.2em;
  }
  .tech-container .icons-container {
    max-width: max-content;
    display: flex;
    padding-left: 0.4em;
    gap: 1em;
  }
  .tech-container .icons-container img {
    aspect-ratio: 2/1 !important;
    object-fit: contain;
  }
  .slide {
    padding: 0em 5em;
  }
  .slide-container {
    margin: -2em 1em 4em 1em;
  }
  .overlay h2 {
    font-size: 1.25rem;
  }
  .view-btn {
    text-align: center;
    font-size: 1.25rem !important;
    width: 10.6875rem !important;
    height: 2rem !important;
  }
  .about-title-wrapper {
    padding-top: 1em;
    max-width: max-content;
  }
  .about-title-wrapper h1 {
    font-size: 4rem;
  }
  .about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100vw;
    height: 100%;
  }
  .about-title-wrapper {
    width: fit-content;
    height: fit-content;
  }
  .about-text-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6ch;
    padding: 0 2em;
    text-align: center;
  }
  .about-images-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-content: space-evenly;
    margin-bottom: 1em;
  }
  .about-images-container .image {
    width: 100%;
    height: fit-content;
    border-radius: 10px;
  }
  .about-images-container img {
    aspect-ratio: 4/5;
    object-fit: contain;
    position: relative;
    border-radius: 10px;
  }
  .image:nth-child(1) img {
    transform: rotate(-15deg);
    transition: 0.3s ease-in-out;
    margin-left: 4em;
  }
  .image:nth-child(2) img {
    transition: 0.3s ease-in-out;
    z-index: 1;
  }
  .image:nth-child(3) img {
    transition: 0.3s ease-in-out;
    transform: rotate(15deg);
    margin-left: -4em;
  }
  .reveal {
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: -10px;
  }
  .skills-container {
    padding: 0 2em;
  }
  .skills-container h2 {
    font-size: 2rem;
  }
  .icons-container {
    display: flex;
    align-items: center;
    gap: 2em !important;
  }
  .icons-container .icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
  }
  .about-cta-container {
    width: 100%;
    padding: 4em 2em;
  }
  .about-cta-container h1 {
    font-size: 2rem;
  }
  .about-cta-container p {
    font-size: 1.25rem;
  }
  .about-cta-container button {
    width: 10.6875rem;
    height: 2rem;
    font-size: 0.85rem;
  }
}
@media only screen and (min-width: 415px) and (max-width: 575px) {
  .hero-container {
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    min-width: 100vw;
  }
  .title-wrapper {
    grid-column: 2/3;
    display: grid;
    grid-template-columns: auto min-content auto;
    grid-template-rows: min-content min-content min-content;
    height: 50vh;
  }
  .title-wrapper h1 {
    align-self: center;
    opacity: 0;
    min-width: max-content;
  }
  .title-wrapper h1:nth-child(1) {
    text-align: right;
    animation-delay: 0.3s;
    margin-right: -1.8em !important;
  }
  .title-wrapper h1:nth-child(3) {
    text-align: left;
    animation-delay: 0.6s;
    margin-left: -1.8em !important;
  }
  .title-wrapper h2 {
    justify-self: center;
    align-self: center;
    text-align: center;
    grid-column: 2/3;
    grid-row: 2/3;
    opacity: 0;
    margin-bottom: 0.2rem;
    animation-delay: 0.9s;
  }
  .title-wrapper p {
    justify-self: center;
    align-self: center;
    font-size: 2rem;
    text-align: center;
    grid-column: 2/3;
    grid-row: 3/4;
    width: 20rem;
    opacity: 0;
    animation-delay: 1.2s;
  }
  .socials-container {
    margin: -2em auto 0 auto;
    display: flex;
    flex-direction: row;
    align-self: center;
    justify-self: center;
    padding: 0 2.4em 0 0.2em;
    gap: 2em;
  }
  .socials-container svg {
    max-width: 1.5rem;
  }
  .img-container {
    height: 7rem;
    width: 7rem;
  }
  .fluid {
    height: 10rem;
    width: 10rem;
  }
  .hero-bg {
    height: 15rem;
    width: 15rem;
  }
  .contact-button {
    display: grid;
  }
  .contact-button span {
    align-self: center;
    justify-self: center;
    width: 10rem;
    height: 2.2rem;
    font-size: 0.85rem;
  }
  .title-wrapper h1 {
    font-size: 2.25rem;
  }
  .title-wrapper h1:nth-child(1) {
    text-align: right;
    margin-right: -1.8em;
  }
  .title-wrapper h1:nth-child(3) {
    text-align: left;
    margin-left: -1.8em;
  }
  .title-wrapper h2 {
    font-size: 1.25rem;
    max-width: max-content;
    margin-bottom: 0.2em;
  }
  .title-wrapper p {
    font-size: 1.25rem;
    max-width: 16rem;
    margin-bottom: -4em;
  }
  .projects-title {
    padding-top: 2em;
    min-width: max-content;
  }
  .projects-title h1 {
    font-size: 4rem;
  }
  .images-container {
    padding-top: 2em;
    margin: 0;
  }
  .images-container img:first-child {
    width: 22rem;
    height: 13rem;
  }
  .images-container img:nth-child(2) {
    width: 4rem;
    height: 8rem;
  }
  #prev {
    margin-top: 3em;
  }
  #next {
    margin-top: 3em;
  }
  .arrow {
    width: 30px;
    height: 25px;
  }
  .tech-container {
    margin: 0.5em;
    width: min-content;
    height: min-content;
  }
  .tech-container h2 {
    margin: 3em 0 0.5em 0;
    font-size: 2rem;
  }
  .tech-container .icons-container {
    min-width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2em;
    margin: 0 auto;
  }
  .tech-container .icons-container img {
    aspect-ratio: 2/1 !important;
    object-fit: contain;
  }
  .slide {
    padding: 0em 5em;
  }
  .slide-container {
    margin: -2em 1em 4em 1em;
  }
  .overlay h2 {
    font-size: 1.25rem;
  }
  .view-btn {
    text-align: center;
    font-size: 1.25rem !important;
    width: 10.6875rem !important;
    height: 2rem !important;
  }
  .about-title-wrapper {
    padding-top: 1em;
    max-width: max-content;
  }
  .about-title-wrapper h1 {
    font-size: 4rem;
  }
  .about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100vw;
    height: 100%;
  }
  .about-title-wrapper {
    width: fit-content;
    height: fit-content;
    margin: 4em 0 2em 0;
  }
  .about-text-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6ch;
    padding: 0 2em;
    text-align: center;
  }
  .about-images-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-content: space-evenly;
    margin-bottom: 1em;
  }
  .about-images-container .image {
    width: 100%;
    height: fit-content;
    border-radius: 10px;
  }
  .about-images-container img {
    aspect-ratio: 4/5;
    object-fit: contain;
    position: relative;
    border-radius: 10px;
  }
  .image:nth-child(1) img {
    transform: rotate(-15deg);
    transition: 0.3s ease-in-out;
    margin-left: 4em;
  }
  .image:nth-child(2) img {
    transition: 0.3s ease-in-out;
    z-index: 1;
  }
  .image:nth-child(3) img {
    transition: 0.3s ease-in-out;
    transform: rotate(15deg);
    margin-left: -4em;
  }
  .reveal {
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: -10px;
  }
  .skills-container {
    padding: 0 2em;
  }
  .skills-container h2 {
    font-size: 2rem;
  }
  .icons-container .icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
  }
  .about-cta-container {
    margin-top: 3em;
    height: min-content;
    padding: 2em 2em;
  }
  .about-cta-container h1 {
    font-size: 2rem;
  }
  .about-cta-container p {
    font-size: 1.25rem;
  }
  .about-cta-container button {
    width: 10.6875rem;
    height: 2rem;
    font-size: 0.85rem;
  }
}
@media only screen and (min-width: 576px) and (max-width: 1024px) {
  .hero-container {
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: column;
  }
  .title-wrapper {
    grid-column: 2/3;
    display: grid;
    grid-template-columns: auto min-content auto;
    grid-template-rows: min-content min-content min-content;
    width: 100%;
    height: 50vh;
  }
  .socials-container {
    flex-direction: row;
    align-self: center;
    justify-self: center;
    padding: 0 2.4em 0 0.2em;
  }
  .socials-container svg {
    max-width: 2rem;
  }
  .img-container {
    max-height: 100%;
    max-width: 100%;
  }
  .title-wrapper h1 {
    font-size: 4rem;
  }
  .title-wrapper h1:nth-child(1) {
    text-align: right;
    margin-right: -1.75em;
  }
  .title-wrapper h1:nth-child(3) {
    text-align: left;
    margin-left: -1.75em;
  }
  .title-wrapper h2 {
    font-size: 2.25rem;
    max-width: max-content;
    margin-bottom: 0.3em;
  }
  .title-wrapper p {
    font-size: 2rem;
    max-width: max-content;
    margin-bottom: 0.3em;
  }
  .projects-container {
    padding: 0 2em;
  }
  .projects-title {
    padding-top: 4em;
  }
  .projects-title h1 {
    font-size: 4rem;
  }
  .images-container {
    position: relative;
  }
  .images-container img:first-child {
    aspect-ratio: 2/1;
    object-fit: contain;
  }
  .images-container img:nth-child(2) {
    max-width: 10rem;
    max-height: 12rem;
    position: absolute;
    right: 75px;
    bottom: 0;
  }
  .arrow {
    width: 50px;
    height: 35px;
  }
  .tech-container {
    padding: 0 4em 0 4 gem;
    width: 100%;
  }
  .tech-container h2 {
    font-size: 2rem;
    margin-bottom: 0.5em;
  }
  .tech-container .icons-container {
    gap: 2em;
  }
  .tech-container .icons-container img {
    aspect-ratio: 2/1 !important;
    object-fit: contain;
  }
  .overlay h2 {
    font-size: 2rem;
  }
  .view-btn {
    text-align: center;
    font-size: 1.25rem !important;
    width: 12.25rem !important;
    height: 2.6rem !important;
  }
  .about-title-wrapper {
    max-width: max-content;
  }
  .about-title-wrapper h1 {
    font-size: 4rem;
  }
  .about-container {
    padding: 0 4em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .about-title-wrapper {
    width: fit-content;
    height: fit-content;
    margin: 4em 0 4em 0;
    padding: 2em 0 4em 0;
  }
  .about-text-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1ch;
    padding: 0 2em;
    text-align: center;
    margin-bottom: 1em;
  }
  .about-images-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-content: space-evenly;
  }
  .about-images-container .image {
    width: 100%;
    height: fit-content;
    border-radius: 10px;
  }
  .about-images-container img {
    aspect-ratio: 4/5;
    object-fit: contain;
    position: relative;
    border-radius: 10px;
  }
  .image:nth-child(1) img {
    transform: rotate(-15deg);
    transition: 0.3s ease-in-out;
    margin-left: 8em;
  }
  .image:nth-child(2) img {
    transition: 0.3s ease-in-out;
    z-index: 1;
  }
  .image:nth-child(3) img {
    transition: 0.3s ease-in-out;
    transform: rotate(15deg);
    margin-left: -8em;
  }
  .reveal {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: -10px;
  }
  .skills-container {
    padding: 0 2em;
  }
  .skills-container h2 {
    font-size: 2rem;
  }
  .icons-container {
    display: flex;
    align-items: center;
  }
  .icons-container .icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
  }
  .about-cta-container h1 {
    font-size: 2.25rem;
  }
  .about-cta-container p {
    font-size: 2rem;
  }
  .about-cta-container button {
    width: 12.25rem;
    height: 2.6rem;
    font-size: 1.25rem;
  }
}