* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.front-page {
  position: relative;
  width: 100%;
  height: 100vh;
  color: white;
  clip-path: circle(5%);
}

.front-page video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-text {
  width: 100%;
  text-align: center;
}

.intro-text,
.music-note {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.title {
  font-size: 5rem;
  padding-bottom: 1rem;
}

.sub-title {
  font-size: 1.5rem;
}

.blend {
  position: absolute;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
}

.second-page {
  height: 100vh;
}