/* Intro */

nav a[href='index.html'] {
  text-decoration: underline;
}

h1 {
  font-weight: normal;
}

.intro-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5vw;
}


.intro-text {
  flex: 0 1 auto;
  min-width: 250px;
}

#my-name {
  font-weight: bold;
  color: var(--accent-color);
}


.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  line-height: 0;
}

.social-links img {
  width: 35px;
  transition: .2s;
}

.social-links img:hover {
  transform: scale(1.1);
}

.intro-photo {
  flex: 0 0 clamp(200px, 25vw, 400px);
  overflow: hidden;
  aspect-ratio: 1/1;
  border-radius: 200px;
}

.intro-photo img {
  width: 120%;
  transform: translateX(-6%) translateY(-10%);
}

/* Projects */

.projects-section {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.projects-section a {
  line-height: 0;
}

.projects-section a img {
  width: 45vw;
  max-width: 600px;
  border-radius: 20px;
  border: 2px solid white;
  transition: .5s;
}

.projects-section a img:hover {
  scale: 1.05;
}

.projects-section > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px
}

.sound-preview-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 5rem;
}

.sound-preview-container img {
  transform: translateY(-13%);
}

audio {
  width: 100%;
  max-width: 300px;
}

.tech-used {
  display: flex;
  gap: 20px;
  width: 100%;
  flex-wrap: wrap;
  align-items: center;
}

.tech-used p {
  margin: 0;
}

.tech-used img {
  height: 30px;
}

.tech-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.currently-section {
  display: flex;
  align-items: flex-start;
  gap: 5vw;
}

.currently-section p {
  margin: 0;
}

.currently-section figure {
  flex: 0 1 100%;
  margin: 0;
}

.currently-section figure a img{
  border-radius: 20px;
  width: 100%;
  border: 2px solid white;
  display: block;
  object-fit: cover;
}