/* WebKit Browsers (Chrome, Safari, Edge) */
:root {
  --primary-color: #8ae0d3;
  --highlight-color: #f5c1e7;
  --dim-color: #8ab3f9;
  --paragraphColor: #18182670;
}

::-webkit-scrollbar {
  width: 12px;
  background-color: #2c2c2c;
}

::-webkit-scrollbar-track {
  background-color: #2c2c2c;
}

::-webkit-scrollbar-thumb {
  background-color: #555;
  border-radius: 10px;
  border: 2px solid #2c2c2c;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #777;
}

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

html,
body {
  scrollbar-color: #555 #2c2c2c;
  /* Thumb and track colors */
  scrollbar-width: thin;
  /* Thin scrollbar */
  /* height: 100vh; */
  /* width: 100vw; */
  margin: 0;
  padding: 0;
}

body {
  background-color: black;
  color: white;
  font-family: "JetBrains Mono", monospace;
  background-image: linear-gradient(135deg, #0000009c, #25115bda),
    url("./public/assets/pixel_background.gif");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;
  height: 100vh;
  width: 100vw;
}

#cursor-glow {
  position: fixed;
  pointer-events: none;
  width: 900px;
  height: 900px;
  left: 0;
  top: 0;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
  opacity: 0.06;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: opacity 0.2s;
}

.mainContainer {
  height: 100vh;
  width: 100vw;
  display: flex;
}

.leftContainer {
  height: 100vh;
  min-width: 30vw;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  border-color: white;
  padding-top: 10vh;
  /* border: solid; */
}

.rightContainer {
  height: 100vh;
  width: 70vw;
  padding-top: 10vh;
  padding-left: 4vw;
  padding-right: 4vw;
  overflow-y: auto;
  /* border: solid; */
}

.leftTopContainer {
  display: flex;
  /* border: solid; */
  margin-left: 10vh;
  margin-bottom: 1rem;
}

.musicContainer {
  height: fit-content;
  width: 340px;
  border-radius: 20px;
  overflow: hidden;
  border-color: var(--primary-color);
  border-style: solid;
  border-width: 3px;
  background-color: black;
  padding-bottom: 20px;
}

.musicImage {
  /* height: 50%;
  width: 86%; */
  margin-top: 7%;
  margin-left: 7%;
  margin-right: 7%;
  margin-bottom: 4%;
  border-radius: 15px;
  overflow: hidden;
  background-image: url("./public/assets/download.gif");
  background-position: center;
  aspect-ratio: 1/1;
  background-size: cover;
  background-repeat: no-repeat;
}

.musicName {
  position: relative;
  color: var(--primary-color);
  font-size: 2rem;
  white-space: nowrap;
  margin-left: 7%;
  margin-right: 7%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.musicSubtitle {
  position: relative;
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-left: 7%;
  margin-right: 7%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#progress {
  appearance: none;
  width: 85%;
  height: 0.4em;
  background: var(--highlight-color);
  border-radius: 5px;
  cursor: pointer;
  margin-left: 7%;
  margin-right: 7%;
}

#progress::-webkit-slider-thumb {
  appearance: none;
  width: 1em;
  height: 1em;
  background: var(--highlight-color);
  border-radius: 50%;
  cursor: pointer;
}

.musicControls {
  position: relative;
  color: var(--highlight-color);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.musicControls div {
  margin-top: 0.9rem;
  margin-left: 1.1rem;
  margin-right: 1.2rem;
}

.navigationContainer {
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.navigationContainer li {
  list-style: none;
  margin-left: 1rem;
  height: 4rem;
  width: 12rem;
}

.navigationContainer ul li a {
  text-decoration: none;
  font-size: 1.3rem;
  color: var(--dim-color);
  transition: color 0.3s, font-size 0.3s;
  transform-origin: left center;
}

.navigationContainer ul li a.active {
  color: var(--primary-color);
  font-size: 1.7rem;
  z-index: 1;
}

#volumeRangeContainer {
  display: flex;
  opacity: 0;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  height: 80px;
  width: 30px;
  padding: 5px 10px;
  background-color: var(--dim-color);
  transition: opacity 0.2s;
  align-self: flex-start;
  margin-left: 0.5rem;
  pointer-events: none;
}

#volumeRangeContainer.show {
  opacity: 1;
  pointer-events: all;
}

#volumeRange {
  width: 100px;
  height: 10px;
  transform: rotate(270deg);
  scale: 0.6;
  cursor: pointer;
}

.leftBottomContainer {
  margin-left: 10vh;
  display: flex;
  flex-direction: column;
  height: 300px;
  width: fit-content;
}

.pairContainer {
  display: flex;
  margin-bottom: 1rem;
}

.audioWaveContainer {
  width: fit-content;
}

#musicCanvas {
  height: 100px;
  width: 165px;
  border-style: solid;
  border-width: 2px;
  border-radius: 15px;
  border-color: var(--primary-color);
}

#gif {
  height: 100px;
  width: 165px;
  border-style: solid;
  border-width: 2px;
  border-radius: 15px;
  border-color: var(--primary-color);
}

.songSelectionContainer {
  display: flex;
  flex-direction: column;
  font-size: 0.7rem;
  border-style: solid;
  border-width: 2px;
  border-radius: 15px;
  border-color: var(--primary-color);
  height: 100px;
  width: 165px;
  margin-left: 8px;
  text-overflow: ellipsis;
}

.songSelectionContainer ol {
  margin-top: 5px;
  background-color: var(--paragraphColor);
}

.songSelectionContainer ol li {
  margin-bottom: 2px;
  margin-left: 2rem;
  font-size: 0.75rem;
  transition: font-size 0.1s ease-in-out;
  color: var(--dim-color);
}

.songSelectionContainer ol li:hover {
  cursor: pointer;
  font-size: 0.77rem;
  color: var(--primary-color);
}

.songSelectionContainer ol li.playing {
  color: var(--primary-color);
  font-size: 0.77rem;
}

.songSelectionContainer p {
  font-size: 1rem;
  padding-left: 0.5rem;
  padding-bottom: 0.1rem;
  padding-top: 0.1rem;
  background-color: black;
  z-index: -2;
}

.songSelectionContainer hr {
  border: none;
  border-top: 2px solid var(--primary-color);
  margin-bottom: 0.2rem;
}

.socialIcons {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  width: 340px;
  cursor: default;
  padding: 10px;
  border-style: solid;
  border-width: 2px;
  border-radius: 15px;
  border-color: var(--primary-color);
}

.socialIcons i:hover {
  cursor: pointer;
}

.glitchText {
  position: relative;
  margin-top: 0;
  font-family: "Orbitron", serif;
  font-size: 5rem;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
    -0.025em -0.05em 0 rgba(0, 255, 0, 0.75),
    0.025em 0.05em 0 rgba(0, 0, 255, 0.75);

  animation: glitch 1000ms infinite;
}

.glitchText span {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.glitchText span:first-child {
  animation: glitch 1650ms infinite;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  transform: translate(-0.025em, -0.0125em);
  /* color: green; */
  opacity: 0.8;
}

.glitchText span:last-child {
  animation: glitch 875ms infinite;
  clip-path: polygon(0 80%, 100% 20%, 100% 100%, 0 100%);
  transform: translate(0.0125em, 0.025em);
  /* color: red; */
  opacity: 0.8;
}

/* https://web.dev/prefers-reduced-motion/#(bonus)-forcing-reduced-motion-on-all-websites */

@keyframes glitch {
  0% {
    text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
      -0.05em -0.025em 0 rgba(0, 255, 0, 0.75),
      -0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
  }

  14% {
    text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
      -0.05em -0.025em 0 rgba(0, 255, 0, 0.75),
      -0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
  }

  15% {
    text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
      0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
      -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
  }

  49% {
    text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
      0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
      -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
  }

  50% {
    text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
      0.05em 0 0 rgba(0, 255, 0, 0.75), 0 -0.05em 0 rgba(0, 0, 255, 0.75);
  }

  99% {
    text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
      0.05em 0 0 rgba(0, 255, 0, 0.75), 0 -0.05em 0 rgba(0, 0, 255, 0.75);
  }

  100% {
    text-shadow: -0.025em 0 0 rgba(255, 0, 0, 0.75),
      -0.025em -0.025em 0 rgba(0, 255, 0, 0.75),
      -0.025em -0.05em 0 rgba(0, 0, 255, 0.75);
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  ::before,
  ::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
}

/* .aboutContainer {
  height: 100vh;
} */

.subHeaderTextContainer {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.subHeaderText:first-child {
  color: white;
}

.paragraphContainerAbout {
  background-color: var(--paragraphColor);
  border-radius: 20px;
  border-style: solid;
  border-color: gray;
  padding: 2rem;
  font-size: 1rem;
  text-align: justify;
}

/* .paragraphContainerAbout { */
/* margin-right: 15vw; */
/* } */

.projectsContainer {
  height: 100vh;
}

.projectsCardContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50%;
  width: 100%;
}

.cardContainer {
  margin-top: 4rem;
  padding-block: 3rem;
}

.cardContent {
  margin-inline: 1.75rem;
  border-radius: 1.25rem;
  overflow: hidden;
}

.cardArticle {
  height: fit-content;
  width: 300px;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 2px solid var(--primary-color);
  background-color: #000000;
  transition: background-color 0.6s;
  display: flex;
  flex-direction: column;
}

.cardArticle a {
  text-decoration: none;
  color: white;
}

.cardImage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 300px;
}

.cardImg {
  height: 275px;
  width: 100%;
  justify-self: center;
  object-fit: cover;
  transition: transform 0.4s;
}

.cardBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  height: 500px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.3);
  z-index: -10;
  transition: transform 0.4s;
}

.cardData {
  height: 150px;
  width: 100%;
  background-color: #000000b5;
  text-align: center;
  z-index: 10;
  transition: transform 0.4s opacity 0.4s;
}

.cardTitle {
  padding-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  /* border: solid; */
}

.cardDescription {
  margin: 8px 8px;
  height: 6.5rem;
  text-overflow: ellipsis;
  /* border: solid */
}

/* card animation */
.cardArticle:hover .cardImg {
  transform: translateY(-1.5rem);
  transform: scale(1.1);
}

.cardArticle:hover {
  background-color: transparent;
}

.cardArticle:hover .cardBg {
  transform: scale(1);
}

.cardArticle:hover .cardButton {
  transform: translateY(-3.75rem);
  opacity: 1;
  pointer-events: initial;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
}

.swiper-button-next,
.swiper-button-prev {
  width: initial;
  height: initial;
  font-size: 3rem;
  color: var(--primary-color);
  /* display: none; */
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
}

.swiper-pagination-bullet {
  background-color: var(--dim-color);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

.resumeContent {
  margin: 0 auto;
  border: solid;
  padding: 2rem;
  background-color: var(--paragraphColor);
  border-radius: 20px;
  border-style: solid;
  border-color: gray;
}

.experience-list {
  list-style: none;
}

.experience-item {
  margin-bottom: 3rem;
  position: relative;
  transition: all 0.3s ease;
}

.experience-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  position: relative;
  padding-bottom: 0.25rem;
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .experience-content {
    grid-template-columns: 200px 1fr;
    gap: 2rem;
  }
}

.experience-item:hover .experience-content {
  transform: translateY(-2px);
}

.experience-item::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: -1.5rem;
  right: -1.5rem;
  bottom: -1rem;
  background: rgba(30, 41, 59, 0.5);
  border-radius: 0.375rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.experience-item:hover::before {
  opacity: 1;
  box-shadow: inset 0 1px 0 0 rgba(148, 163, 184, 0.1),
    0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.experience-header {
  position: relative;
  z-index: 10;
  margin-bottom: 0.5rem;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
}

.experience-details {
  position: relative;
  z-index: 10;
}

.job-title {
  font-weight: 500;
  line-height: 1.375;
  color: #e2e8f0;
  margin-bottom: 0.5rem;
}

.company-link {
  display: inline-flex;
  align-items: baseline;
  font-weight: 500;
  line-height: 1.25;
  color: #e2e8f0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
  position: relative;
}

.company-link:hover,
.company-link:focus {
  color: #5eead4;
}

.company-link::before {
  content: "";
  position: absolute;
  top: -0.625rem;
  left: -1rem;
  right: -1rem;
  bottom: -1rem;
  border-radius: 0.375rem;
  display: none;
}

@media (min-width: 1024px) {
  .company-link::before {
    display: block;
  }
}

.external-link-icon {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin-left: 0.25rem;
  transform: translateY(1px);
  transition: transform 0.3s ease;
}

.company-link:hover .external-link-icon,
.company-link:focus .external-link-icon {
  transform: translateY(-1px) translateX(1px);
}

.job-progression {
  color: #64748b;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.job-description {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.5rem;
  list-style: none;
}

.tech-item {
  margin-right: 0.375rem;
  margin-top: 0.5rem;
}

.tech-tag {
  display: flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  background: rgba(94, 234, 212, 0.1);
  color: #5eead4;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.25;
}

.related-links {
  margin-top: 0.5rem;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.related-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: 0.5rem;
}

.related-link:hover,
.related-link:focus {
  color: #5eead4;
}

.link-icon {
  width: 0.75rem;
  height: 0.75rem;
  margin-right: 0.25rem;
}

.resume-link {
  margin-top: 3rem;
  display: inline-flex;
  align-items: baseline;
  font-weight: 600;
  color: #e2e8f0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.resume-link:hover,
.resume-link:focus {
  color: #5eead4;
}

.resume-link .external-link-icon {
  margin-left: 0.25rem;
}

.resume-link:hover .external-link-icon,
.resume-link:focus .external-link-icon {
  transform: translateY(-1px) translateX(1px);
}

/* just for smaller laptops */
@media (max-width: 1440px) {

  .leftContainer {
    height: 100vh;
    min-width: 30vw;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    border-color: white;
    padding-top: 10vh;
    /* border: solid; */
  }

  .navigationContainer {
    display: none;
  }

}

/* tablet and vertical monitors*/
@media (max-width: 1100px) {
  body {
    background-color: black;
    color: white;
    font-family: "JetBrains Mono", monospace;
    background-image: linear-gradient(135deg, #0000009c, #25115bda),
      url("./public/assets/pixel_background.gif");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -1;
    width: 100vw;
  }

  .mainContainer {
    height: fit-content;
    width: 100vw;
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .leftContainer {
    height: 360px;
    width: 100vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 0;
    padding-left: 2rem;
    padding-right: 2rem;
    margin: 0;
    /* border: solid; */
    margin-top: 1rem;
    margin-bottom: 1rem;
    /* flex-wrap: wrap; */
  }

  .rightContainer {
    height: fit-content;
    width: 100vw;
    padding-top: 0;
    padding-left: 2rem;
    padding-right: 2rem;
    overflow-y: visible;
    /* border: solid; */
  }

  .navigationContainer {
    display: none;
  }

  .leftTopContainer {
    display: flex;
    margin: 0;
    min-width: 340px;
  }

  .musicContainer {
    min-height: 340px;
    min-width: 340px;
    border-radius: 20px;
    overflow: hidden;
    border-color: var(--primary-color);
    border-style: solid;
    border-width: 2px;
    background-color: black;
    padding-bottom: 15px;
  }

  .musicImage {
    margin-top: 4%;
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 2%;
    border-radius: 15px;
    overflow: hidden;
    background-image: url("./public/assets/download.gif");
    background-position: center;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: bottom;
  }

  .musicName {
    position: relative;
    color: var(--primary-color);
    font-size: 1.5rem;
    white-space: nowrap;
    margin-left: 7%;
    margin-right: 7%;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .musicSubtitle {
    position: relative;
    color: var(--primary-color);
    font-size: 1rem;
    margin-left: 7%;
    margin-right: 7%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .musicControls div {
    margin-top: 0.5rem;
  }

  .leftBottomContainer {
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 340px;
    height: 340px;
    min-width: 340px;
    width: 340px;
    border: solid 2px var(--primary-color);
    border-radius: 20px;
    padding: 1rem;
  }

  .audioWaveContainer {
    width: 150px;
  }

  #musicCanvas {
    height: 110px;
    width: 150px;
  }

  #gif {
    height: 110px;
    width: 150px;
  }

  .songSelectionContainer {
    margin-left: 10px;
    height: 110px;
    width: 150px;
  }

  .songSelectionContainer p {
    font-size: 1.2rem;
  }

  .songSelectionContainer ol li {
    font-size: 0.9rem;
    margin-left: 3rem;
  }

  .songSelectionContainer ol li:hover {
    cursor: pointer;
    font-size: 0.93rem;
    color: var(--primary-color);
  }

  .songSelectionContainer ol li.playing {
    color: var(--primary-color);
    font-size: 0.95rem;
  }

  .socialIcons {
    position: relative;
    display: flex;
    margin-left: 0;
    justify-content: space-between;
    align-items: center;
    height: fit-content;
    width: 310px;
    cursor: default;
    padding: 10px;
    border-style: solid;
    border-width: 2px;
    border-radius: 15px;
    border-color: var(--primary-color);
  }


  .socialIcons p {
    display: none;
  }
}

@media (max-width: 768px) {
  body {
    background-color: black;
    color: white;
    font-family: "JetBrains Mono", monospace;
    background-image: linear-gradient(135deg, #0000009c, #25115bda),
      url("./public/assets/pixel_background.gif");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -1;
    width: 100vw;
  }

  .mainContainer {
    height: fit-content;
    width: 100vw;
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .leftContainer {
    height: fit-content;
    width: 100vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 0;
    padding-left: 2rem;
    padding-right: 2rem;
    margin: 0;
    margin-top: 1rem;
    margin-bottom: 1rem;
    /* flex-wrap: wrap; */
  }

  .rightContainer {
    height: fit-content;
    width: 100vw;
    padding-top: 0;
    padding-left: 2rem;
    padding-right: 2rem;
    overflow-y: visible;
    /* border: solid; */
  }

  .navigationContainer {
    display: none;
  }

  .leftTopContainer {
    display: flex;
    margin: 0;
    min-width: 340px;
    /* margin-bottom: 1rem; */
  }

  .musicContainer {
    min-height: 340px;
    width: 340px;
    border-radius: 20px;
    overflow: hidden;
    border-color: var(--primary-color);
    border-style: solid;
    border-width: 2px;
    background-color: black;
    padding-bottom: 15px;
  }

  .musicImage {
    margin-top: 4%;
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 2%;
    border-radius: 15px;
    overflow: hidden;
    background-image: url("./public/assets/download.gif");
    background-position: center;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: bottom;
  }

  .musicName {
    position: relative;
    color: var(--primary-color);
    font-size: 1.5rem;
    white-space: nowrap;
    margin-left: 7%;
    margin-right: 7%;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .musicSubtitle {
    position: relative;
    color: var(--primary-color);
    font-size: 1rem;
    margin-left: 7%;
    margin-right: 7%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .musicControls div {
    margin-top: 0.5rem;
  }

  .leftBottomContainer {
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 340px;
    width: 340px;
    border: solid 2px var(--primary-color);
    border-radius: 20px;
    padding: 1rem;
  }

  .audioWaveContainer {
    width: 150px;
  }

  #musicCanvas {
    height: 110px;
    width: 150px;
  }

  #gif {
    height: 110px;
    width: 150px;
  }

  .songSelectionContainer {
    margin-left: 10px;
    height: 110px;
    width: 150px;
  }

  .songSelectionContainer p {
    font-size: 1.2rem;
  }

  .songSelectionContainer ol li {
    font-size: 0.9rem;
    margin-left: 3rem;
  }

  .songSelectionContainer ol li:hover {
    cursor: pointer;
    font-size: 0.93rem;
    color: var(--primary-color);
  }

  .songSelectionContainer ol li.playing {
    color: var(--primary-color);
    font-size: 0.95rem;
  }

  .socialIcons {
    position: relative;
    display: flex;
    margin-left: 0;
    justify-content: space-between;
    align-items: center;
    height: fit-content;
    width: 310px;
    cursor: default;
    padding: 10px;
    border-style: solid;
    border-width: 2px;
    border-radius: 15px;
    border-color: var(--primary-color);
  }

  .socialIcons p {
    display: none;
  }

  .cardDescription {
    font-size: 0.8rem;
  }
}

@media (max-width: 430px) {
  body {
    background-color: black;
    color: white;
    font-family: "JetBrains Mono", monospace;
    background-image: linear-gradient(135deg, #0000009c, #25115bda),
      url("./public/assets/pixel_background.gif");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -1;
    width: 100vw;
  }

  .mainContainer {
    height: fit-content;
    width: 100vw;
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .leftContainer {
    height: fit-content;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 0;
    padding-left: 2rem;
    padding-right: 2rem;
    margin: 0;
    margin-top: 1rem;
    margin-bottom: 1rem;
    /* flex-wrap: wrap; */
  }

  .rightContainer {
    height: fit-content;
    width: 100vw;
    padding-top: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    overflow-y: visible;
    /* border: solid; */
  }

  .navigationContainer {
    display: none;
  }

  .leftTopContainer {
    display: flex;
    margin: 0;
    min-width: 340px;
    margin-bottom: 0.4rem;
  }

  .musicContainer {
    height: fit-content;
    min-width: 340px;
    border-radius: 20px;
    overflow: hidden;
    border-color: var(--primary-color);
    border-style: solid;
    border-width: 2px;
    background-color: black;
    padding-bottom: 15px;
  }

  .musicImage {
    margin-top: 4%;
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 2%;
    border-radius: 15px;
    overflow: hidden;
    background-image: url("./public/assets/download.gif");
    background-position: center;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: bottom;
  }

  .musicName {
    position: relative;
    color: var(--primary-color);
    font-size: 1.5rem;
    white-space: nowrap;
    margin-left: 7%;
    margin-right: 7%;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .musicSubtitle {
    position: relative;
    color: var(--primary-color);
    font-size: 1rem;
    margin-left: 7%;
    margin-right: 7%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .musicControls div {
    margin-top: 0.5rem;
  }

  .leftBottomContainer {
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 0px;
    height: fit-content;
    width: 340px;
    border: solid 2px var(--primary-color);
    border-radius: 20px;
    padding: 0.7rem 1rem;
  }

  .audioWaveContainer {
    width: 150px;
  }

  #musicCanvas {
    height: 110px;
    width: 150px;
  }

  #gif {
    height: 110px;
    width: 150px;
  }

  .songSelectionContainer {
    margin-left: 10px;
    height: 110px;
    width: 150px;
  }

  .songSelectionContainer p {
    font-size: 1.2rem;
  }

  .songSelectionContainer ol li {
    font-size: 0.9rem;
    margin-left: 3rem;
  }

  .songSelectionContainer ol li:hover {
    cursor: pointer;
    font-size: 0.93rem;
    color: var(--primary-color);
  }

  .songSelectionContainer ol li.playing {
    color: var(--primary-color);
    font-size: 0.95rem;
  }

  .socialIcons {
    position: relative;
    display: flex;
    margin-left: 0;
    justify-content: space-between;
    align-items: center;
    height: fit-content;
    width: 310px;
    cursor: default;
    padding: 10px;
    border-style: solid;
    border-width: 2px;
    border-radius: 15px;
    border-color: var(--primary-color);
  }


  .socialIcons p {
    display: none;
  }

  .glitchText {
    font-size: 2.2rem;
  }

  .subHeaderTextContainer {
    font-size: 1.2rem;
  }

  .paragraphContainerAbout {
    font-size: 0.6rem;
    padding: 1rem;
  }

  .projectsCardContainer {
    height: 350px;
  }

  .cardContainer {
    margin-top: 0;
    padding-top: 1rem;
  }

  .cardContent {
    margin-inline: 1.75rem;
    border-radius: 1.25rem;
    overflow: hidden;
  }

  .cardArticle {
    height: fit-content;
    width: 300px;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    background-color: #000000;
    transition: background-color 0.6s;
    display: flex;
    flex-direction: column;
  }

  .cardArticle a {
    text-decoration: none;
    color: white;
  }

  .cardImage {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 110px;
  }

  .cardImg {
    height: 110px;
    width: 100%;
    justify-self: center;
    object-fit: cover;
    transition: transform 0.4s;
  }

  .cardBg {
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 500px;
    object-fit: cover;
    object-position: center;
    transform: scale(1.3);
    z-index: -10;
    transition: transform 0.4s;
  }

  .cardData {
    height: 150px;
    width: 100%;
    background-color: #000000b5;
    text-align: center;
    z-index: 10;
    transition: transform 0.4s opacity 0.4s;
  }

  .cardTitle {
    padding-top: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    /* border: solid; */
  }

  .cardDescription {
    margin: 8px 8px;
    height: 6.5rem;
    text-overflow: ellipsis;
    font-size: 0.7rem;
    /* border: solid */
  }

  .swiper-button-prev {
    display: none;
  }

  .swiper-button-next {
    display: none;
  }

  /* card animation */
  .cardArticle:hover .cardImg {
    transform: translateY(-1.5rem);
    transform: scale(1);
  }

  .cardArticle:hover {
    background-color: transparent;
  }

  .cardArticle:hover .cardBg {
    transform: scale(1);
  }

  .cardArticle:hover .cardButton {
    transform: translateY(-3.75rem);
    opacity: 1;
    pointer-events: initial;
  }
}