html {
  display: flex;
  flex-direction: column;
  scroll-snap-type: y mandatory;
  padding: 0;
  overflow: scroll;
  margin: 0;
  height: 200vh; /* twice the height of the viewport */
  font-family: vortice-concept, sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: rgb(0, 0, 0);
}
::-webkit-scrollbar {
  display: none;
}
#topHalf {
  scroll-snap-align: start;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@700&family=Open+Sans:wght@400&display=swap");

/* Container for the title, subtitle, and button */
.landing-page-header {
  display: flex;
  flex-direction: column;
  justify-content: center; /* This will vertically center your content */
  align-items: center; /* This centers the content horizontally */
  height: 100vh; /* Use the full height of the viewport */

  text-align: left;
}

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@700&family=Open+Sans:wght@400&display=swap");

/* Container for the title, subtitle, and button */
.landing-page-header {
  display: flex;
  flex-direction: column;
  justify-content: center; /* This will vertically center your content */
  align-items: flex-start; /* This aligns the content to the left */
  height: 100vh; /* Use the full height of the viewport */
  padding-left: 50px; /* Adjust padding as needed for horizontal spacing */
  text-align: left;
}

.landing-page-title {
  font-family: "Roboto", sans-serif;
  font-size: 100px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
  line-height: 1.2;
}

.landing-page-subtitle {
  font-family: "Open Sans", sans-serif;
  font-size: 30px;
  font-weight: 400;
  width: 70vh;
  color: #ffffff;
  margin: 0 0 20px 0; /* Increased margin for spacing above the button */
  line-height: 1.3;
}

.playground-button {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: white;
  background-color: transparent; /* Example button color, change as needed */
  border-color: #ffbfd7;
  border-radius: 4px;
  padding: 10px 20px;
  cursor: pointer;
  width: 20vw;
  border-radius: 15px;
  height: 10vh;
  text-align: center;
  align-content: center;
  text-decoration: none; /* If you're using an <a> element for the button */
  transition: background-color 0.3s ease;
}

.playground-button:hover {
  background-color: #ffd4e4; /* Darker shade for hover effect */
}

/* Responsive font sizes */
@media (max-width: 768px) {
  .landing-page-title {
    font-size: 36px;
  }
  .landing-page-subtitle {
    font-size: 18px;
  }
  .playground-button {
    font-size: 16px;
    padding: 8px 16px;
    color: white;
  }
}

@media (max-width: 480px) {
  .landing-page-title {
    font-size: 32px;
  }
  .landing-page-subtitle {
    font-size: 16px;
  }
  .playground-button {
    font-size: 14px;
    padding: 6px 12px;
    width: 80vw;
  }
  .landing-page-header {
    padding-left: 10px; /* Adjust padding as needed for horizontal spacing */
  }
}

#bubblezSVG {
  position: fixed;
  height: 100%;
  width: 110%;
  top: 0;
  left: -5%;
  overflow: visible;
  z-index: -1;
}

#top {
  z-index: 2;
  pointer-events: none;
}

svg {
  font-size: 35px;
  fill: #313639;
}

#textSVG {
  position: fixed;
  width: 110%;
  top: 40vh;
  left: -5%;
}
