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

h1 {
  font-weight: 700;
  letter-spacing: 0.03em;
}
h2, h3 {
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
}

h3{
  margin-bottom: 2.5rem;
}

body {
  font-family: "Inclusive Sans", sans-serif;
  font-weight: 400;
  color: #fff;
  background-color: #0a0a0a;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 400;
}

.ContentProps {
  max-width: 45rem;
  margin: 0 auto;
  padding: 1.5rem;
}

main {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding-bottom: 2.5rem;
}

.content-wrapper {
  width: 100%;
  margin: 0 auto;
}

.header-section {
  display: flex;
  gap: 2.5rem;
  padding: 4rem 0 5rem;
}

.text-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}


.container {
  width: 100%;
  display: flex;
}

.location-link {
  color: lightgray;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.3s ease;
}

.location-link:hover {
  color: white;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  font-size: 1rem;
  color: lightgray;
  width: 100%;
}

@media (max-width: 768px) {
  .header-section {
    flex-direction: column;
    text-align: center;
  }
  .container {
    flex-direction: column;
    gap: 0.75rem;
  }
  .social-links {
    justify-content: center;
  }
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: white;
}

.tech-stack-container {
  display: flex;
  flex-direction: column;
  margin-top: 1.75rem;
  text-align: center;
}

.tech-stack-container h2{
  margin-bottom: 1.5rem;
}

.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .tech-stack-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 500px) {
  .tech-stack-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tech-stack-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 6rem;
  gap: 0.375rem;
  border: none;
  border-radius: 10px;
  background-color: #1A1A1A;
  color: white;
  transition: all 0.3s ease-in-out;
}

.tech-stack-button:hover {
  background-color: #262626;
}

.tech-stack-icon {
  transition: transform 0.3s;
}

.tech-stack-button:hover .tech-stack-icon {
  transform: translateY(-0.25rem);
}

.projects-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 6rem;
  gap: 3rem;
}

.card {
  width: 640px;
  margin: 0 auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  background-color: #1A1A1A;
  gap: 1.25rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(211, 211, 211, 0.3);
}

@media (max-width: 768px) {
  .card {
    width: 90%;
  }
}

.card .description-container h3 {
  margin: 0.75rem 0;
}

.card .description-container p {
  color: lightgray;
}

.card .description-container span {
  text-transform: uppercase;
}

.card .description-container a {
  color: white;
  text-decoration: none;
}

.card .description-container a:hover {
  text-decoration: underline;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  align-items: center;
  margin-top: 1.25rem;
}

@media (max-width: 768px) {
  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 500px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tech-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.375rem;
  padding: 0.25rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.75rem;
  font-weight: bold;
  background-color:#404040;
  color: white;
}

.tech-item p {
  margin: 0;
}

.card img {
  max-width: 100%;
  height: auto;
  max-height: 26.65rem;
  object-fit: contain;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  vertical-align: middle;
}
.img-hover-zoom{
  overflow: hidden;
}
.img-hover-zoom img{
  transition: transform .5s ease;
}
.img-hover-zoom:hover img{
  transform: scale(1.05);
}

.project-links-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  width: 100%;
}

@media (max-width: 768px) {
  .project-links-container {
    flex-direction: column;
  }

  .project-links-container a {
    width: 100%;
  }
}

.project-links-container a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 3rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: bold;
  color: white;
  background-color: #262626;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid #404040;
}

.project-links-container a:hover {
  background-color: #1A1A1A;
}

.shimmer-button {
  height: 3rem;
  animation: shimmer 2.5s infinite linear;
  border-radius: 0.375rem;
  border: 1px solid #404040;
  background: linear-gradient(
    110deg,
    #0a0a0a 0%,
    #1A1A1A 45%,
    #262626 45%,
    #262626 55%,
    #1A1A1A 55%,
    #0a0a0a 100%
  );
  background-size: 200% 100%;
  transition: background-color 0.3s ease, color 0.3s ease;
  outline: none;
}

@media (min-width: 640px) {
  .project-links-container a{
    width: 100%;
  }
  .shimmer-button {
    font-size: 1rem;
  }
}

.shimmer-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px #94a3b8, 0 0 0 4px #f8fafc;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

i {
  font-size: 1.25rem;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in-element {
  animation: fadeIn 1.25s ease-in-out;
}

@keyframes PopOutIn{
  from{scale: 1.1;}
  to{scale: 1;}
}
.Pop-Out-In-element{
  animation: PopOutIn 1s ease-in-out;
}

@keyframes DownUp{
  from{transform: translateY(100px);}
  to{transform: translateY(0px);}
}
.down-up-element{
  animation: DownUp 1s ease-in-out;
}
@keyframes UpDown{
  from{transform: translateY(-100px);}
  to{transform: translateY(0px);}
}
.up-down-element{
  animation: UpDown 1s ease-in-out;
}