/*variable definitions*/
/*mixin definitions*/
/* @import url(/css/layout.css); */
/* 
   E-Portfolio
   Author: Simeon Iyoha
   Date: 23 October, 2023
   Description: This is Simeon Iyoha's portfolio.

*/
@font-face {
  font-family: "Whyte Inktrap";
  src: url("./fonts/WhyteInktrap-Bold.woff") format("woff"), url("./fonts/WhyteInktrap-Bold.woff2") format("woff2");
  /* font-weight:; */
  font-style: normal;
}

h1,
h2,
h3 {
  /* font-family: paralucentcondensed, sans-serif;
  font-style: normal; */
  font-family: "IBM Plex Sans Condensed";
  font-weight: 900;
  font-size: 8em;
  line-height: 0.9em;
  -webkit-text-stroke: 4px #f7f9f2;
}

h4,
h5 {
  font-family: "IBM Plex Sans Condensed";
  font-weight: 400;
  font-size: 1.2em;
  line-height: 0.5em;
  color: rgba(255, 255, 255, 0.501);
}

body header {
  background-color: #0A0A0A;
}

.header-section {
  position: fixed;
  z-index: 2;
}

.cursor-label {
  position: fixed;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #f7f9f2;
  color: #0A0A0A;
  font-family: "IBM Plex Sans Condensed";
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform: translate3d(-9999px, -9999px, 0) scale(0.1);
  opacity: 0;
  transition: opacity 150ms ease, transform 200ms ease;
  z-index: 3;
}

.cursor-label.is-active {
  opacity: 1;
}

.cursor-label.is-hidden {
  opacity: 0;
}

.cursor-label.is-inverted {
  background: #0A0A0A;
  color: #f7f9f2;
  border: 2px solid #0A0A0A;
}
.cursor-label.is-inverted {
  background: #0A0A0A;
  color: #f7f9f2;
  border: 2px solid #0A0A0A;
}

.cursor-label.is-idle {
  transform: translate3d(var(--cursor-x, -9999px), var(--cursor-y, -9999px), 0) scale(0.1);
}

.cursor-label.is-idle span {
  opacity: 0;
}

.cursor-label span {
  transition: opacity 150ms ease;
}

@media (hover: none), (pointer: coarse) {
  .cursor-label {
    display: none;
  }
}

.button-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  /* padding: 0 0 0 24px; */
  width: 100%;
  text-align: left;
  z-index: 3;

}

.back-button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  align-self: flex-start;
  margin-left: 0;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  text-decoration: none;
  z-index: 3;
  color: #f7f9f2;
}

.back-button img {
  width: 22px;
  height: 22px;
  transform: rotate(90deg);
  display: block;
}

.homecopy p {
  animation-name: hero;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.homecopy h2 {
  line-height: 1em;
  /* twek to adjust the speed of the animations */
  /* twek to adjust the speed of the animations */
}

.homecopy h2 .design-text {
  font-family: "Whyte Inktrap", monospace;
  font-weight: 300;
  -webkit-text-stroke: 0px #f7f9f2;
}

.homecopy h2 .scrolled.slide-bottom {
  animation: slide-in-bottom 1s ease-in-out both;
}

@keyframes slide-in-bottom {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.homecopy h2 .scrolled.delay-1 {
  animation-delay: 0.3s;
}

.homecopy h2 .code-text {
  font-family: "Source Code Pro", monospace;
  font-weight: 300;
  font-size: 0.7em;
  -webkit-text-stroke: 3px #f7f9f2;
}

.homecopy h2 .scrolled.slide-bottom {
  animation: slide-in-bottom 1s ease-in-out both;
}

@keyframes slide-in-bottom {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.homecopy h2 .scrolled.delay-2 {
  animation-delay: 0.3s;
}

.homecopy h2 .design-text:hover {
  color: #b5ec48;
  -webkit-text-stroke: 0px #f7f9f2;
}

.homecopy h2 .code-text:hover {
  color: #09a86b;
  -webkit-text-stroke: 3px #09a86b;
}

@keyframes hero {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

.skills-grid p {
  font-size: 18px;
  padding-top: 10px;
}

.skills-grid aside h3 {
  font-family: "IBM Plex Sans Condensed";
  font-weight: 900;
  font-size: 2.2em;
  line-height: 0.9em;
  -webkit-text-stroke: 1px #f7f9f2;
}

.all-projects .project1:nth-of-type(2) {
  background-color: #c6e379;
}

.all-projects .project1:nth-of-type(3) {
  background-color: #2edeca;
}

.project1 {
  color: #0A0A0A;
  font-weight: 600;
  z-index: 1;
}

.project1 p {
  font-size: 18px;
  padding-top: 10px;
  color: #0A0A0A;
}

.project1 h3 {
  font-family: "IBM Plex Sans Condensed";
  font-weight: 900;
  font-size: 2.2em;
  line-height: 0.9em;
  -webkit-text-stroke: 1px #0A0A0A;
}

.marquee {
  background-color: #bbe611;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: #0A0A0A;
  font-weight: 800;
  font-size: 1.2em;
  /* line-height: .9em; */
  -webkit-text-stroke: 0px #0A0A0A;
}

.marquee-2 {
  background-color: #1171e6;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.2em;
  /* line-height: .9em; */
  -webkit-text-stroke: 0px #f7f9f2;
}

#experience-section {
  background-color: #f7f9f2;
}

.exp-grid {
  padding: 50px 100px;
}

.exp-grid h5 {
  padding-bottom: 50px;
  color: rgba(0, 0, 0, 0.501);
  font-weight: 500;
}

@media only screen and (min-width: 768px) {
  .contact-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    padding: 100px;
    justify-content: center;
    align-items: center;
  }
}

/* scroll inview animations */
.js-scroll {
  opacity: 0;
  transition: opacity 500ms;
}

.js-scroll.scrolled {
  opacity: 1;
  transition-delay: 0.3s;
}

/*slide in left animation */
.scrolled.slide-left {
  animation: slide-in-left 0.8s ease-in-out both;
}

@keyframes slide-in-left {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/*slide in right animation */
.scrolled.slide-right {
  animation: slide-in-right 0.8s ease-in-out both;
}

@keyframes slide-in-right {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/*fade in bottom animation */
.scrolled.fade-in {
  animation: fade-in 1s ease-in-out both;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*slide in bottom animation */
.scrolled.slide-bottom {
  animation: slide-in-bottom 0.7s ease-in-out both;
}

@keyframes slide-in-bottom {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* twek to adjust the speed of the animations */
.scrolled.delay-1 {
  animation-delay: 0.3s;
}

.scrolled.delay-2 {
  animation-delay: 0.4s;
}

.scrolled.delay-3 {
  animation-delay: 0.5s;
}

.scrolled.delay-4 {
  animation-delay: 0.6s;
}

/* ------------------------------------------------------------------------------ */
/*LAYOUT CSS*/
/* 
   E-Portfolio
   Author: Simeon Iyoha
   Date: 23 October, 2023
   Description: This is Simeon Iyoha's portfolio.

 */
html {
  font-family: "IBM Plex Sans Condensed", sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: #0A0A0A;
  color: #f7f9f2;
  /* padding: 0 100px; */
  margin: 0;
}

body header {
  display: flex;
  padding: 0 100px;
  position: fixed;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  box-sizing: border-box;
}

p {
  color: #f7f9f2;
  font-size: 18px;
  line-height: 1.4em;
  font-family: "IBM Plex Mono";
}

.logo {
  width: 80px;
  height: 100%;
  display: block;
}

.spotify-icon {
  height: 100%;
  display: block;
}

.headernav {
  z-index: 2;
  display: flex;
  gap: 60px;
  align-items: flex-end;
}

.headernav img {
  width: 100%;
  height: 22px;
}

.headernav .header-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.headernav .header-icons .blob.white {
  background: rgba(255, 255, 255, 0);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgb(255, 255, 255);
  animation: pulse-white 2s infinite;
}

@keyframes pulse-white {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.navlist {
  display: flex;
  gap: 40px;
}

.navlist li a {
  text-decoration: none;
  color: #f7f9f2;
}

.navlist li a:hover {
  text-decoration: none;
  color: #f7f9f2;
}

a.navicon {
  display: none;
}

#home-section {
  padding: 130px 0 200px 0;
  /* background-color: rgba(206, 206, 211, 0.029); */
  text-align: center;
}

#home-section h3{
  font-weight: 900;
  font-size: 3.2em;
  text-align: left;
  line-height: 1em;
  color: #f7f9f2;
  -webkit-text-stroke: 1px #f7f9f2;
}

.homecopy p {
  /* margin-top: 5px; */
  font-size: 20px;
  padding: 10px 100px 0px;
}

#scroll-text {
  font-family: "IBM Plex Sans Condensed";
  font-weight: 400;
  font-size: 1em;
  line-height: 0.5em;
  color: rgba(255, 255, 255, 0.501);
  position: relative;
  display: inline-block;
}

.scroll-container {
  position: relative;
  height: 7vh;
}

.text-circle {
  position: absolute;
  top: 185%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.arrow-down-img {
  width: 20px;
  position: absolute;
  bottom: 47px;
  left: 50%;
  transform: translateX(-50%);
}

#about-section {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  grid-template-rows: auto auto;
  padding: 100px;
  /* line-height: 4em; */
  gap: 4rem;
}

#about-section>p {
  text-align: center;
  grid-column: 1/span 2;
  padding-top: 90px;
  
}

#about-section h5 {
  /* font-size: 8em; */
  /* color: $secondary-color; */
  padding-bottom: 20px;
}

.wrapper {
  position: relative;
  height: -moz-max-content;
  height: max-content;
  width: -moz-max-content;
  width: max-content;
}

.wrapper img {
  width: 450px;
  height: auto;
}

.wrapper:hover img {
  transition: transform 0.4s ease;
  /* Add transition for smooth effect */
  transform: scale(1.05) rotate(5deg);
  /* Apply scale and rotation */
}

.wrapper .effex {
  width: 120px;
  height: 120px;
}

.wrapper .img-1 {
  width: 130px;
  height: 130px;
  position: absolute;
  left: 0px;
  top: -30px;
  z-index: -1;
}

.wrapper .img-4 {
  width: 120px;
  height: 120px;
  position: absolute;
  right: -18px;
  top: -30px;
  z-index: 1;
}

.wrapper .img-2 {
  position: absolute;
  right: -9px;
  bottom: -30px;
  z-index: -1;
}

.wrapper .img-3 {
  position: absolute;
  left: 0px;
  bottom: -20px;
  z-index: 1;
}

.skills-section {
  /* padding-top: 50px; */
  padding: 50px 100px 120px 100px;
}

.skills-section h5 {
  padding-bottom: 20px;
}

.all-skills {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
  align-items: flex-start;
}

.backend {
  padding-top: 40px;
}

.skills-grid {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto auto;
}

.skills-grid img {
  width: 38px;
}

.skills-grid aside {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: left;
  gap: 10px;
}

.projects-section {
  /* padding-top: 50px; */
  padding: 50px 100px 120px 100px;
}

.projects-section h5 {
  padding-bottom: 20px;
}

.project-tab {
  --indicator-size: 6px;
  --indicator-color: #111827;
  --inactive-color: #9ca3af;
  --active-color: #f7f9f2;

  position: relative;
  display: inline-flex;
  gap: 2.5rem;
  padding-bottom: 1.25rem;
}



.project-tab h5 {
  cursor: pointer;
  width: fit-content;
}

.dot-indicators h5 {
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.dot-indicators h5:hover,
.dot-indicators h5:focus {
  opacity: 0.7;
}

.dot-indicators h5[aria-selected="true"] {
  opacity: 1;
  border-bottom: 2px solid #bbe611;
}

.arm-page {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  /* gap: 5rem; */
  /* padding: 100px; */
  /* background-color: rgba(206, 206, 211, 0.029); */
  /* text-align: center; */
}

.hero {
  /* height: 100vh; */
  display: flex;
  /* flex-direction: column; */
  justify-content: center;
  align-items: center;
  gap: 7rem;
  /* height: 90dvh; */
  padding: 100px;
}

.parts {
  display: flex;
  flex-direction: column;
  /* justify-content: baseline; */
  /* align-items: baseline; */
  gap: 3rem;
  width: 50%;
}

.parts>h1 {
  line-height: normal;
  font-size: 48px;
  text-align: left;
}

.parts>p {
  font-size: 18px;
  text-align: left;
}

.parts-img-container {
  position: relative;
  background: #BCE60F;
  /* overflow-x: hidden; */
  /* width: 100%; */
  /* height: auto; */
  /* laptop */
}

.parts-img {
  /* left: 0%; */
  /* width: 100%; */
  /* height: auto; */
}

.info-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding: 0 100px 150px 100px;
}

.info-img {
  width: 100%;
  height: auto;

  /* width: 1521px;
  height: 1009px; */
}

.info-text {
  display: grid;
  gap: 7em;
  justify-content: space-between;
  grid-template-columns: 1fr 1fr;
}

.info-text>h2 {
  font-size: 48px;
  width: 25%;
}

.info-text>h3 {
  font-weight: 900;
  font-size: 3.2em;
  text-align: left;
  line-height: 1em;
  color: #f7f9f2;
  -webkit-text-stroke: 1px #f7f9f2;
}

.info-text>p {
  font-size: 18px;
  width: 100%;
  text-align: left;
}



.all-projects {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 30px;
  align-items: flex-start;
}

.all-projects[hidden] {
  display: none;
}

.all-projects a {
  text-decoration: none;
}

.project1 {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto auto;
  background-color: #5CF4C9;
  align-items: center;
  justify-content: center;
  padding: 13px 13px 0 13px;
  padding-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
}

.project1 img {
  width: 100%;
  height: auto;
  padding-bottom: 30px;
}

.img-wrapper {
  position: relative;
  overflow: hidden;
  height: 100%;
  border-radius: 15px;
}

.img-wrapper:hover {
  background-color: #53e4bb;
}

.img-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.img-hover-item {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 15px;
  transform: scale(1.02);
  transition: 0.25s 0.1s ease-out;
}

/* 1. 'hov-img-scale' */
.hov-img-scale .img-container:hover .img-hover-item {
  transform: scale(1.1);
}

.marquee {
  --gap: .2rem;
  position: relative;
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  gap: var(--gap);
}

.marquee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll 20s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

.marquee span {
  display: inline-block;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(100vw);
  }

  100% {
    transform: translateX(-100%);
  }
}

.exp-grid-1 {
  text-align: left;
  font-weight: 800;
  font-size: 1.2em;
  color: #0A0A0A;
  padding-bottom: 70px;
  /* -webkit-text-stroke: 1px $primary-color; */
  align-items: flex-start;
  display: grid;
  grid-template-columns: 0.3fr 1fr 0.5fr;
}

.exp-grid-1 h2 {
  font-weight: 900;
  font-size: 3.2em;
  line-height: 0.9em;
  color: #0A0A0A;
  -webkit-text-stroke: 3px #0A0A0A;
}

.exp-grid-1 h3 {
  font-family: "IBM Plex Sans Condensed";
  font-weight: 900;
  font-size: 2.2em;
  line-height: 0.9em;
  -webkit-text-stroke: 1px #0A0A0A;
}

.exp-grid-1:last-child {
  padding-bottom: 0px;
}

#lkdin-btn {
  /* align-items: center; */
  /* justify-content: center; */
  margin-top: 30px;
  padding: 16px 60px;
  cursor: pointer;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.4em;
  -webkit-text-stroke: 0.5px #f7f9f2;
  background-color: #0A0A0A;
  color: white;
  text-decoration: none;
  border-radius: 15px;
}

#lkdin-btn:hover {
  box-shadow: 0 0 0 3px #0A0A0A inset;
  background-color: white;
  color: #0A0A0A;
  /* border: 4px solid $primary-color; */
  -webkit-text-stroke: 0.7px #0A0A0A;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-weight: 900;
  padding: 16px 60px;
}

.btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 100px;
}

.marquee-2 {
  --gap: .2rem;
  position: relative;
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  gap: var(--gap);
}

.marquee__content-2 {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll 20s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

.marquee-2 span {
  display: inline-block;
  animation: marquee 20s linear infinite;
}

@keyframes marquee-2 {
  0% {
    transform: translateX(100vw);
  }

  100% {
    transform: translateX(-100%);
  }
}

.contact-info form {
  max-width: 800px;
}

.feedback-input {
  color: white;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-size: 18px;
  border-radius: 15px;
  line-height: 22px;
  background-color: transparent;
  border: 1.5px solid #f7f9f2;
  transition: all 0.3s;
  padding: 13px;
  margin-bottom: 15px;
  width: 100%;
  box-sizing: border-box;
  outline: 0;
}

.feedback-input:focus {
  border: 2px solid #f7f9f2;
}

textarea {
  height: 150px;
  line-height: 150%;
  resize: vertical;
  border-radius: 15px;
}

[type=submit] {
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.4em;
  -webkit-text-stroke: 0.5px #0A0A0A;
  width: 100%;
  background-color: #f7f9f2;
  border-radius: 15px;
  border: 0;
  cursor: pointer;
  color: #0A0A0A;
  padding: 16px 0;
  transition: all 0.3s;
  margin-top: -4px;
}

[type=submit]:hover {
  box-shadow: 0 0 0 3px #f7f9f2 inset;
  background-color: #0A0A0A;
  color: #f7f9f2;
  -webkit-text-stroke: 0.4px #f7f9f2;
}

.contact-info {
  align-items: center;
  justify-content: center;
  /* display: flex; */
  display: grid;
  grid-template-rows: auto auto;
  gap: 20px;
}

.contact-info h5 {
  padding-bottom: 20px;
}

.contact-info .soc-med {
  margin-top: 50px;
  padding-bottom: 30px;
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: center;
}

.contact-info img {
  width: auto;
  height: 22px;
}

.contact-info .github {
  width: auto;
  height: 27px;
}

footer {
  padding: 100px 100px;
}

footer>h5 {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid #f7f9f2;
}

/*--------------------------------mobile only styles-----------------------------*/
@media screen and (min-width: 300px) and (max-width: 600px) {
  .logo {
    width: 60px;
    height: auto;
  }

  .header-section {
    position: fixed;
    display: flex;
    padding: 0 30px;
    justify-content: space-between;
    align-items: center;
    /* position: relative; */
  }

  /* side menu */
  .navlist {
    left: 0;
    top: 100%;
    position: fixed;
    inset: 0 0 0 0%;
    overflow: hidden;
    z-index: 3;
    list-style: none;
    margin: 0;
    flex-direction: column;
    transform: translateX(100%);
    transition: opacity 500ms linear, transform 750ms ease-in-out;
    background-color: #0A0A0A;
    height: 0;
    width: 0;
  }

  .navlist li {
    padding: 20px 0;
    padding-bottom: 10px;
    vertical-align: baseline;
    font-weight: 900;
    font-size: 2em;
    /* border-bottom: .1rem solid white; */
  }

  .navlist[data-visible=true] {
    overflow: hidden;
    transform: translateX(0);
    height: 100vh;
    padding: 5rem 0rem 0rem 2rem;
    width: 100%;
    /* height: max-content; */
  }

  /* side menu ends */
  .headernav .linkedin-icon {
    display: none;
  }

  a.navicon {
    display: block;
    /* position: absolute; */
    z-index: 3;
    background: transparent;
    border: 0;
    cursor: pointer;
    width: 1.5rem;
    aspect-ratio: 1;
  }

  #home-section {
    padding: 130px 30px 190px 30px;
    /* background-color: rgba(206, 206, 211, 0.029); */
    text-align: center;
  }

  h1,
  h2,
  h3 {
    /* font-family: paralucentcondensed, sans-serif;
    font-style: normal; */
    font-weight: 900;
    font-size: 4.7em;
    line-height: 0.5em;
    -webkit-text-stroke: 2px #f7f9f2;
  }

  h4,
  h5 {
    font-size: 1.2em;
    font-weight: 400;
    line-height: 0.5em;
    color: rgba(255, 255, 255, 0.501);
    /* -webkit-text-stroke: 0px $secondary-color; */
  }

  br {
    display: none;
  }

  .homecopy h2 {
    line-height: 1em;
    text-align: center;
  }

  .homecopy h2 .where-text {
    font-size: 1em;
    /* Adjust font size */
    line-height: 0.75em;
    /* Adjust line height */
    margin: 0;
    /* Reset margin to remove extra space */
    display: block;
  }

  .homecopy h2 .meets-text {
    font-size: 1em;
    /* Adjust font size */
    line-height: 0.75em;
    /* Adjust line height */
    margin: 0;
    /* Reset margin to remove extra space */
    display: block;
  }

  .homecopy h2 .design-text {
    font-family: "Whyte Inktrap", monospace;
    font-weight: 300;
    font-size: 0.8em;
    padding: 10px 0px;
    -webkit-text-stroke: 0px #f7f9f2;
    display: inline-block;
  }

  .homecopy h2 .code-text {
    font-family: "Source Code Pro", monospace;
    font-weight: 300;
    font-size: 0.43em;
    -webkit-text-stroke: 1.3px #f7f9f2;
    display: block;
    padding-top: -12px;
  }

  .homecopy h2 .design-text:hover {
    color: #f7f9f2;
    -webkit-text-stroke: 0px #f7f9f2;
  }

  .homecopy h2 .code-text:hover {
    color: #f7f9f2;
    -webkit-text-stroke: 1.5px #f7f9f2;
  }

  .homecopy p {
    /* margin-top: 5px; */
    font-size: 20px;
    /* padding-top: 15px; */
    padding: 15px 0 0 0;
  }

  #scroll-text {
    font-family: "IBM Plex Sans Condensed";
    font-weight: 400;
    font-size: 0.85em;
    line-height: 0.5em;
    color: rgba(255, 255, 255, 0.501);
    position: relative;
    display: inline-block;
  }

  .scroll-container {
    position: relative;
    height: 33px;
  }

  .text-circle {
    position: absolute;
    top: 385%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .arrow-down-img {
    width: 20px;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
  }

  #about-section {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding: 50px 30px;
    /* line-height: 4em; */
    gap: 0rem;
  }

  #about-section>p {
    display: none;
    text-align: center;
    grid-column: 1/span 2;
    /* grid-row: 1 / span 1; */
    padding-top: 90px;
  }

  #about-section>div>p {
    /* text-align: center; */
    grid-column: 1/span 2;
    font-size: 18px;
    padding-bottom: 90px;
  }

  #about-section h5 {
    /* font-size: 8em; */
    /* color: $secondary-color; */
    padding-bottom: 20px;
  }

  .wrapper {
    position: relative;
    justify-content: center;
    align-items: center;
    display: flex;
    width: 100%;
  }

  .wrapper img {
    width: 100%;
    height: auto;
  }

  .wrapper .effex {
    width: 102px;
  }

  .wrapper .img-1 {
    width: 84px;
    height: 130px;
    position: absolute;
    left: 22px;
    top: -42px;
    z-index: -1;
  }

  .wrapper .img-4 {
    width: 84px;
    height: auto;
    position: absolute;
    right: -5px;
    top: -21px;
    z-index: 1;
  }

  .wrapper .img-2 {
    width: 85px;
    height: auto;
    position: absolute;
    right: -6px;
    bottom: -16px;
    z-index: -1;
  }

  .wrapper .img-3 {
    width: auto;
    height: 82px;
    position: absolute;
    left: 24px;
    bottom: -9px;
    z-index: 1;
  }

  .scroll-icon img {
    margin-top: 70px;
    width: 150px;
    height: auto;
  }

  .skills-section {
    /* padding-top: 50px; */
    padding: 50px 30px 30px 30px;
  }

  .skills-section h5 {
    padding-bottom: 20px;
  }

  .all-skills {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto auto auto;
    gap: 50px;
    align-items: flex-start;
  }

  .skills-grid {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto;
  }

  .skills-grid img {
    width: 38px;
  }

  .skills-grid aside {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: left;
    gap: 10px;
  }

  .projects-section {
    /* padding-top: 50px; */
    padding: 50px 30px 120px 30px;
  }

  .all-projects {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto auto auto;
    gap: 50px;
    align-items: flex-start;
  }

  .projects-section h5 {
    padding-bottom: 20px;
  }

  .project1 {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto;
    background-color: #5CF4C9;
    align-items: center;
    justify-content: center;
    padding: 13px 13px 0 13px;
    padding-bottom: 30px;
  }

  .project1 img {
    width: 100%;
    height: auto;
    padding-bottom: 30px;
  }

  .exp-grid {
    padding: 50px 30px;
  }

  .exp-grid-1 {
    text-align: left;
    font-weight: 800;
    font-size: 1.2em;
    color: #0A0A0A;
    padding-bottom: 50px;
    /* -webkit-text-stroke: 1px $primary-color; */
    align-items: flex-start;
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto auto;
    gap: 15px;
  }

  .exp-grid-1 h2 {
    font-weight: 900;
    font-size: 2.2em;
    line-height: 0.9em;
    color: #0A0A0A;
    -webkit-text-stroke: 1.8px #0A0A0A;
  }

  .exp-grid-1 h3 {
    font-weight: 900;
    font-size: 1.6em;
    line-height: 0.9em;
    color: #0A0A0A;
    -webkit-text-stroke: 1px #0A0A0A;
  }

  .contact-info {
    align-items: center;
    justify-content: center;
    /* display: flex; */
    display: grid;
    grid-template-rows: auto auto;
    gap: 20px;
  }

  .contact-info form {
    max-width: 1000px;
  }

  .feedback-input {
    color: white;
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 18px;
    border-radius: 15px;
    line-height: 22px;
    background-color: transparent;
    border: 1.5px solid #f7f9f2;
    transition: all 0.3s;
    padding: 13px;
    margin-bottom: 15px;
    width: 100%;
    box-sizing: border-box;
    outline: 0;
  }

  gmp-map {
    height: 65%;
    width: 80%;
    padding: 0 40px;
    justify-content: center;
    align-items: center;
  }

  .contact-map {
    display: grid;
    gap: 2rem;
    padding: 100px 30px;
    grid-template-rows: auto auto;
    justify-content: center;
    align-items: center;
  }

  .arm-page {
    display: flex;
    flex-direction: column;
    gap: 5rem;
  }

  .hero {
    /* height: 100vh; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7rem;
    padding: 0;
  }

  .parts {
    /* height: 100vh; */
    width: 100%;

  }

  .parts>h1 {
    line-height: normal;
    font-size: 55.2px;
    text-align: center;
  }

  .parts>p {
    font-size: 22px;
    text-align: center;
  }

  .parts-img-container {
    width: 100%;
    height: 400px;
    background: #BCE60F;
    position: relative;
  }

  .parts-img {
    height: 200px;
    width: auto;
    position: absolute;
    bottom: 0;
    right: 0;
    /* transform: translate(-50%, -50%); */
  }

  .info-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7rem;
    padding: 0;
  }

  .info-img {
    width: 100%;
    height: auto;
  }

  .info-text {
    display: block;
  }

  .info-text>h2 {
    line-height: normal;
    font-size: 42px;
    width: 100%;
    text-align: center;
    margin-bottom: 5rem;
  }

  .info-text>p {
    font-size: 22px;
    width: 100%;
    text-align: center;
  }

}

/*--------------------------------tablet only styles-----------------------------*/
/* Media query for mobile screens based on height */
@media screen and (min-height: 430px) and (max-height: 900px) {
  #scroll-text {
    font-family: "IBM Plex Sans Condensed";
    font-weight: 400;
    font-size: 1em;
    line-height: 0.5em;
    color: rgba(255, 255, 255, 0.501);
    position: relative;
    display: inline-block;
  }

  .scroll-container {
    position: relative;
    height: 33px;
  }

  .text-circle {
    position: absolute;
    top: 385%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .arrow-down-img {
    width: 23px;
    position: absolute;
    bottom: 40%;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media screen and (min-width: 601px) and (max-width: 960px) {


  .arm-page {
    display: flex;
    flex-direction: column;
    gap: 5rem;
  }

  .hero {
    /* height: 100vh; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7rem;
    padding: 0;
  }

  .parts {
    /* height: 100vh; */
    width: 100%;

  }

  .parts>h1 {
    line-height: normal;
    font-size: 55.2px;
    text-align: center;
  }

  .parts>p {
    font-size: 22px;
    text-align: center;
  }

  .parts-img-container {
    width: 100%;
    height: 400px;
    background: #BCE60F;
    position: relative;
  }

  .parts-img {
    height: 450px;
    width: auto;
    position: absolute;
    bottom: 0;
    right: 0;
    /* left: -21%; */
    /* transform: translate(-50%, -50%); */
  }

  .info-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7rem;
    padding: 0;
  }

  .info-img {
    width: 100%;
    height: auto;
  }

  .info-text {
    display: block;
  }

  .info-text>h2 {
    line-height: normal;
    font-size: 42px;
    width: 100%;
    text-align: center;
    margin-bottom: 5rem;
  }

  .info-text>p {
    font-size: 22px;
    width: 100%;
    text-align: center;
  }

  #home-section {
    padding: 130px 100px 230px 100px;
    /* background-color: rgba(206, 206, 211, 0.029); */
    text-align: center;
  }

  .homecopy p {
    /* margin-top: 5px; */
    /* font-size: 22px; */
    padding-top: 30px;
  }

  br {
    display: none;
  }

  #scroll-text {
    font-family: "IBM Plex Sans Condensed";
    font-weight: 400;
    font-size: 1em;
    line-height: 0.5em;
    color: rgba(255, 255, 255, 0.501);
    position: relative;
    display: inline-block;
  }

  .scroll-container {
    position: relative;
    height: 33px;
  }

  .text-circle {
    position: absolute;
    top: 385%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .arrow-down-img {
    width: 23px;
    position: absolute;
    bottom: 40%;
    left: 50%;
    transform: translateX(-50%);
  }

  .homecopy h2 {
    font-weight: 900;
    font-size: 7em;
    line-height: 0.4em;
    text-align: center;
  }

  .homecopy h2 .where-text {
    font-size: 1em;
    /* Adjust font size */
    line-height: 0.75em;
    /* Adjust line height */
    margin: 0;
    /* Reset margin to remove extra space */
    display: block;
  }

  .homecopy h2 .meets-text {
    font-size: 1em;
    /* Adjust font size */
    line-height: 0.75em;
    /* Adjust line height */
    margin: 0;
    /* Reset margin to remove extra space */
    display: block;
  }

  .homecopy h2 .design-text {
    font-family: "Whyte Inktrap", monospace;
    font-weight: 300;
    font-size: 0.8em;
    padding: 5px 0px;
    -webkit-text-stroke: 0px #f7f9f2;
    display: block;
    line-height: 1.5em;
  }

  .homecopy h2 .code-text {
    font-family: "Source Code Pro", monospace;
    font-weight: 300;
    font-size: 0.45em;
    -webkit-text-stroke: 1.5px #f7f9f2;
    display: block;
    padding-top: 15px;
    line-height: 1.7em;
    /* text-align: center; */
  }

  .scroll-icon img {
    margin-top: 80px;
    width: 170px;
    height: auto;
  }

  #about-section {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding: 50px 100px;
    place-items: center;
    /* line-height: 4em; */
    gap: 0rem;
  }

  #about-section>p {
    display: none;
    text-align: center;
    grid-column: 1/span 2;
    /* grid-row: 1 / span 1; */
    padding-top: 90px;
  }

  #about-section>div>p {
    /* text-align: center; */
    grid-column: 1/span 2;
    font-size: 22px;
    padding-bottom: 90px;
  }

  #about-section h5 {
    /* font-size: 8em; */
    /* color: $secondary-color; */
    padding-bottom: 20px;
  }

  .wrapper {
    position: relative;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .wrapper .effex {
    width: 120px;
    height: 120px;
  }

  .wrapper .img-1 {
    width: 130px;
    height: 130px;
    position: absolute;
    left: 0.2rem;
    bottom: -10px;
    z-index: -1;
  }

  .wrapper .img-4 {
    width: 130px;
    height: 130px;
    position: absolute;
    right: 4px;
    bottom: -20px;
    z-index: 1;
  }

  .wrapper .img-2 {
    width: 140px;
    height: 140px;
    position: absolute;
    right: 4px;
    bottom: -30px;
    z-index: -1;
  }

  .wrapper .img-3 {
    position: absolute;
    left: 4px;
    bottom: -20px;
    z-index: 1;
  }

  .all-skills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 70px 30px;
    align-items: flex-start;
  }

  .skills-grid {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto;
  }

  .skills-grid img {
    width: 38px;
  }

  .skills-grid aside {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: left;
    gap: 10px;
    /* padding-bottom: 10px; */
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.501); */
  }

  .project1 {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto;
    background-color: #5CF4C9;
    align-items: center;
    justify-content: center;
    padding: 13px 13px 0 13px;
    padding-bottom: 30px;
    color: #0A0A0A;
    font-weight: 600;
  }

  .project1 p {
    font-size: 18px;
    padding-top: 10px;
    color: #0A0A0A;
  }

  .project1 h3 {
    font-family: "IBM Plex Sans Condensed";
    font-weight: 900;
    font-size: 2.2em;
    line-height: 0.9em;
    -webkit-text-stroke: 1px #0A0A0A;
  }

  .project1 img {
    width: 100%;
    height: auto;
    padding-bottom: 30px;
  }

  .all-projects {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto auto;
    gap: 50px;
    align-items: flex-start;
  }

  .projects-section h5 {
    padding-bottom: 20px;
  }

  .exp-grid-1 {
    text-align: left;
    font-weight: 800;
    font-size: 1.2em;
    color: #0A0A0A;
    padding-bottom: 50px;
    /* -webkit-text-stroke: 1px $primary-color; */
    align-items: flex-start;
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto auto;
    gap: 15px;
  }

  .exp-grid-1 h2 {
    font-weight: 900;
    font-size: 3em;
    line-height: 0.9em;
    color: #0A0A0A;
    -webkit-text-stroke: 3px #0A0A0A;
  }

  .exp-grid-1 h3 {
    font-weight: 900;
    font-size: 1.6em;
    line-height: 0.9em;
    color: #0A0A0A;
    -webkit-text-stroke: 1px #0A0A0A;
  }

  .contact-info {
    align-items: center;
    justify-content: center;
    /* display: flex; */
    display: grid;
    grid-template-rows: auto auto;
    gap: 20px;
  }

  .contact-info h5 {
    padding-bottom: 20px;
  }

  .contact-info .soc-med {
    margin-top: 50px;
    padding-bottom: 30px;
    display: flex;
    gap: 60px;
    justify-content: center;
    align-items: center;
  }

  .contact-info img {
    width: auto;
    height: 22px;
  }

  .contact-info .github {
    width: auto;
    height: 27px;
  }

  .contact-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 100px;
  }
}

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