/* og-music.com — 1:1 replica of the original Bubble design */

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

html,
body {
  background: #000;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

main {
  max-width: 1080px;
  margin: 100px auto 125px;
  padding-top: 6px;
}

h1 {
  font-size: 64px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -2.5px;
  color: #fff;
  text-align: center;
  margin: 0 20px 100px;
}

.hero {
  display: block;
  width: min(800px, calc(100% - 10px));
  height: auto;
  margin: 0 auto;
  border-radius: 50px;
}

.pitch {
  width: 625px;
  max-width: 100%;
  margin: 100px auto 0;
  padding-left: 20px;
  padding-right: 70px;
}

.pitch p {
  font-size: 30px;
  line-height: 42px;
  font-weight: 700;
  letter-spacing: -1.3px;
  padding-left: 4px;
  margin-bottom: 42px;
}

.pitch p:last-of-type {
  margin-bottom: 40px;
}

.cta {
  display: inline-flex;
  align-items: center;
  height: 46px;
  padding: 0 20px;
  margin-left: 4px;
  background: #fff;
  color: #000;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.cta:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  br.d {
    display: none;
  }

  h1 {
    font-size: 34px;
    line-height: 1.3;
    letter-spacing: -1px;
    text-align: left;
    margin: 0 20px 60px;
  }

  .pitch {
    width: auto;
    margin: 60px 20px 0;
    padding: 0 30px 0 0;
  }

  .pitch p {
    font-size: 25px;
    line-height: 33.75px;
    letter-spacing: -0.6px;
    padding-left: 0;
    margin-bottom: 34px;
  }

  .pitch p:last-of-type {
    margin-bottom: 40px;
  }

  .cta {
    margin-left: 0;
  }
}
