.download-now-comp {
  margin-left: calc(6rem + 12px);
}
@media screen and (max-width: 1100px) {
  .download-now-comp {
    margin-left: calc(2rem + 12px);
    margin-right: calc(2rem + 12px);
  }
}
@media screen and (max-width: 800px) {
  .download-now-comp {
    margin-left: calc(1rem + 12px);
    margin-right: 1rem;
  }
}
.download-now-comp .buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.download-now-comp .buttons .download-button {
  font-weight: bold;
  font-size: 2rem;
  justify-content: flex-start;
}
.download-now-comp .buttons .download-button .text {
  font-size: 1.2rem;
}

.section {
  padding-left: calc(6rem + 12px);
  min-height: 80vh;
}
@media screen and (max-width: 1200px) {
  .section {
    padding-left: calc(2rem + 12px);
    padding-right: 2rem;
  }
}
@media screen and (max-width: 800px) {
  .section {
    padding-left: calc(1rem + 12px);
    padding-top: 1rem;
    min-height: unset;
  }
}

#hero {
  display: flex;
  align-items: center;
  height: 100vh;
}
@media screen and (max-width: 800px) {
  #hero {
    padding-left: calc(1rem + 12px);
    padding-top: 1rem;
  }
}
#hero h2 {
  font-size: 8rem;
  width: 60%;
}
@media screen and (max-width: 1800px) {
  #hero h2 {
    font-size: 6rem;
  }
}
@media screen and (max-width: 1600px) {
  #hero h2 {
    font-size: 5rem;
  }
}
@media screen and (max-width: 600px) {
  #hero h2 {
    font-size: 3rem;
    width: 100%;
  }
}
#hero h2 .pink {
  color: #F83A83;
}

#filters {
  padding-top: 14rem;
}
#filters #filter-shots {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
  gap: 2rem;
}
@media screen and (max-width: 700px) {
  #filters #filter-shots {
    flex-direction: column;
    flex-wrap: unset;
  }
}
#filters #filter-shots .filter-shot {
  display: flex;
  flex-direction: column;
  width: 30rem;
  gap: 1rem;
}
@media screen and (max-width: 700px) {
  #filters #filter-shots .filter-shot {
    width: 100%;
  }
}
#filters #filter-shots .filter-shot .filter-name {
  font-weight: bold;
  font-size: 1.5rem;
}
@media screen and (max-width: 700px) {
  #filters #filter-shots .filter-shot .filter-name {
    font-size: 1rem;
  }
}

#whos-going {
  padding-top: 18rem;
}
@media screen and (max-width: 700px) {
  #whos-going {
    padding-top: 8rem;
  }
}
#whos-going #whos-going-screenshot {
  width: 40rem;
}
@media screen and (max-width: 700px) {
  #whos-going #whos-going-screenshot {
    width: 100%;
  }
}

#buy-tickets {
  padding-bottom: 18rem;
}
@media screen and (max-width: 700px) {
  #buy-tickets {
    padding-bottom: 8rem;
    padding-top: 8rem;
  }
}
#buy-tickets #buy-tickets-screenshot {
  width: 40rem;
}
@media screen and (max-width: 700px) {
  #buy-tickets #buy-tickets-screenshot {
    width: 100%;
  }
}

.section-title {
  font-size: 0.8rem;
  color: #F83A83;
}