/* ============================ */
/*    Section Titles */
/* ============================ */

.section-title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6rem 1rem 1rem 1rem;
  gap: 0.5rem;
  background-color: #14131b;
}
.section-title-container h2 {
  font-size: clamp(2.5rem, 17vw, 3.5rem);
  font-weight: 700;
  color: white;
}
.section-title-container span {
  color: #4c98ff;
}
.section-title-container p {
  font-size: 1.2rem;
  font-family: "Quicksand", sans-serif;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 700px) {
  .section-title-container {
    align-items: start;
  }
}
@media (max-width: 450px) {
  .section-title-container h2 {
    font-size: clamp(2.5rem, 17vw, 3rem);
  }
}
