* {  
  font-family: 'Montserrat', sans-serif;
  font-size: calc(var(--scale) * 16px);

  --border-radius: 0.5rem;
  --scale: 1;
}

body {
  margin: 0;
  padding: 0;
  border: 0;
}

.grow-on-hover {
  transform: scale(1);
  transform-origin: center;
  transition: transform 0.1s;
}

.grow-on-hover:hover {
  transform: scale(1.05);
}

.call-to-action {
  border-radius: var(--border-radius);
  background-color: #000;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}

.call-to-action:hover {
  background-color: #fff;
  color: #000;
}

section {
  background-size: cover;
}

br {
  line-height: 0;
}

/* DOES IT SOUND FAMILIAR section */
section#does-it-sound-familiar > h2 {
  margin: 0.625rem 0 0;
  font-size: 3.0625rem;
  font-weight: 800;

  color: #0a59df;
}

section#does-it-sound-familiar > h2 {
  max-width: 60vw;
}

section#does-it-sound-familiar > h3 {
  margin: 1rem 0 0;
  font-size: 1.25rem;
  font-weight: 800;
  
  color: #020935;
}

section#does-it-sound-familiar > h3 {
  max-width: 50vw;
}
section#does-it-sound-familiar > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: fit-content;
  gap: 3rem;
}

section#does-it-sound-familiar > div > ul {
  margin: 1.6875rem 0 0;
  padding: 0;
  max-width: 45vw;

  font-size: 0.875rem;        
  list-style-type: none;
}

section#does-it-sound-familiar > div > ul > li {
  margin: 0 0 1.125rem;
  font-size: 1rem;
}

section#does-it-sound-familiar > div > ul > li:before {
  content: "⦿ ";
  color: #0a59df;
}

section#does-it-sound-familiar div > video {
  width: max(31.625rem, 35vw);
  border-radius: var(--border-radius);
}

@media (max-aspect-ratio: 16/9) {
  section#does-it-sound-familiar > div {
    flex-direction: column;
  }

  section#does-it-sound-familiar > h2 {
    max-width: 100vw;
  }
  section#does-it-sound-familiar > h3 {
    max-width: 100vw;
  }
  section#does-it-sound-familiar > div > ul {
    max-width: fit-content;
  }

  section#does-it-sound-familiar > div > video {
    margin-bottom: 3rem;
    width: 100%;
  }
}

@media (max-aspect-ratio: 5/4) {
  section#does-it-sound-familiar {
    padding: 5.75rem 3rem 3rem;
    text-align: start;
  }

  section#does-it-sound-familiar > h2 {
    font-size: 2rem;
  }
    section#does-it-sound-familiar > h3 {
    font-size: 1.35rem;
  }
  
  @media screen and (min-width: 1440px) and (max-width: 1600px) {}

@media only screen and (min-width: 1500px) {
    :root {
        --scale: 1;
    }

    section#does-it-sound-familiar>h2 {
        max-width: 40vw !important;
    }
}

@media only screen and (min-width: 1800px) {
    :root {
        --scale: 0.7;
    }

    section#does-it-sound-familiar div>video {
        width: max(31.625rem, 18vw) !important;
    }

}