body {
  background: var(--gradient);
}
body section.section-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 300px;
  text-align: center;
}
body section.section-hero h1 img {
  width: 500px;
}
body section.section-hero h2 {
  margin-top: 2rem;
  color: var(--dark-cyan);
}
body section.section-hero div.hero-links {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 20px;
}
body section.section-hero div.hero-links a {
  text-decoration: none;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 4rem;
  font-size: 20px;
  font-weight: 500;
  transition: all 0.25s ease;
}
body section.section-hero div.hero-links a.about-btn {
  color: var(--dark-pink);
  background-color: var(--light-pink);
  border: solid 4px var(--dark-pink);
  box-shadow: -4px 4px 0px var(--dark-pink);
}
body section.section-hero div.hero-links a.about-btn:hover {
  background-color: var(--dark-pink);
  color: var(--pink);
  transform: translate(4px, -4px);
  box-shadow: -8px 8px 0px var(--dark-pink);
}
body section.section-hero div.hero-links a.contact-btn {
  color: var(--dark-cyan);
  background-color: var(--light-cyan);
  border: solid 4px var(--dark-cyan);
  box-shadow: 4px 4px 0px var(--dark-cyan);
}
body section.section-hero div.hero-links a.contact-btn:hover {
  background-color: var(--dark-cyan);
  color: var(--cyan);
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0px var(--dark-cyan);
}
body section.section-hero div.music-player {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
body section.section-hero div.music-player p {
  color: var(--dark-cyan);
  font-size: 16px;
  font-style: italic;
}
body section.section-hero div.music-player button {
  margin: 0 auto;
  margin-top: 2rem;
  background-color: var(--white);
  border: solid 4px var(--dark-cyan);
  color: var(--dark-cyan);
  padding: 10px 20px;
  border-radius: 4rem;
  font-weight: 500;
  transition: all 0.25s ease;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  box-shadow: 0px 4px 0px var(--dark-cyan);
}
body section.section-hero div.music-player button svg line {
  stroke: #322E33;
}
body section.section-hero div.music-player button:hover {
  background-color: var(--dark-cyan);
  color: var(--cyan);
  transform: translate(0px, -4px);
  box-shadow: 0px 8px 0px var(--dark-cyan);
  cursor: pointer;
}
body section.section-hero div.music-player button:hover svg line {
  stroke: var(--white);
}
body section {
  display: flex;
  margin: 0 auto;
  flex-direction: row-reverse;
  justify-content: center;
  margin-top: 8rem;
  width: 80%;
}
body section > div {
  display: flex;
  padding: 1rem;
  width: 100%;
}
body section div.section-image {
  justify-content: center;
}
body section div.section-image img {
  height: 400px;
  border-radius: 20px;
}
body section div.section-texts {
  flex-direction: column;
  justify-content: center;
  margin: 0 8rem;
}
body section div.section-texts h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
  color: var(--dark-cyan);
}
body section div.section-texts p {
  margin-bottom: 1rem;
  color: var(--dark-cyan);
  font-size: 18px;
}
body section div.section-texts a {
  text-decoration: none;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 4rem;
  font-size: 20px;
  font-weight: 500;
  transition: all 0.25s ease;
  width: -moz-max-content;
  width: max-content;
  color: var(--dark-pink);
  background-color: var(--light-pink);
  border: solid 4px var(--dark-pink);
  box-shadow: -4px 4px 0px var(--dark-pink);
}
body section div.section-texts a:hover {
  background-color: var(--dark-pink);
  color: var(--pink);
  transform: translate(4px, -4px);
  box-shadow: -8px 8px 0px var(--dark-pink);
}
body section.section2 {
  flex-direction: row;
}
body section.section2 div.section-image img {
  transform: scaleX(-1);
  transform-origin: center;
}
body section.section3 {
  flex-direction: column;
}
body section.section3 h2 {
  margin-bottom: 2rem;
  color: var(--dark-cyan);
  font-size: 2rem;
  text-align: center;
}
body section.section3 div.section3-items {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 3rem;
}
body section.section3 div.section3-items div.section3-item {
  padding: 1rem;
  border-radius: 50%;
  height: 200px;
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--transparent-white);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
body section.section3 div.section3-items div.section3-item h3 {
  color: var(--dark-cyan);
  font-weight: bold;
  text-align: center;
  font-size: 20px;
}

@media (max-width: 1024px) {
  body section.section-hero {
    margin-top: 220px;
  }
  body section.section-hero h1 img {
    width: min(420px, 80vw);
  }
  body section {
    width: 92%;
  }
  body section div.section-texts {
    margin: 0 2rem;
  }
}

@media (max-width: 768px) {
  body section.section-hero {
    margin-top: 180px;
    padding: 0 1rem;
  }
  body section.section-hero div.hero-links {
    flex-direction: column;
    align-items: center;
  }
  body section.section-hero div.hero-links a {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
  body section {
    flex-direction: column;
    margin-top: 4rem;
  }
  body section > div {
    padding: 0;
  }
  body section div.section-image img {
    width: 100%;
    max-width: 360px;
    height: auto;
  }
  body section div.section-texts {
    margin: 0;
  }
  body section.section2 {
    flex-direction: column;
  }
  body section.section3 div.section3-items {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  body section.section3 div.section3-items div.section3-item {
    height: 160px;
    width: 160px;
  }
}

@media (max-width: 480px) {
  body section.section-hero h2 {
    font-size: 18px;
  }
  body section div.section-texts h2 {
    font-size: 1.6rem;
  }
  body section div.section-texts p {
    font-size: 16px;
  }
}
