body, html {
  height: 100%;
  margin: 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  background-color: #F6F2F1;
  overflow: hidden;
}

.launching {
  border: 2px solid #1F0B38;  /* Adding border */
  background-color: transparent;  /* Removing background color */
  color: #1F0B38;  /* Changing text color */
  text-align: center;
  padding: 7px 0;  /* Adjusted padding to account for border width */
  font-size: 24px;
  border-radius: 99px;
  margin-bottom: 25px;
  width: 100%; 
  box-sizing: border-box;
}


nav {
  background-color: #FFFFFF;
  border-bottom: 2px solid #1F0B38;
  padding: 12.5px 0;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.logo img {
  width: 200px;
}

section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  padding: 0 30%; 
}

h1 {
  font-size: 82px;
  color: #1F0B38;
  margin-bottom: 25px;
  font-weight: normal;
}

h1 .highlight {
  color: #8E3AF6;
}

p {
  font-size: 18px;
  color: rgba(31, 31, 31, 1);
  padding: 5px;
}

@media screen and (max-width: 768px) {
  h1 {
      font-size: 42px;
  }

  .launching, nav {
      padding: 5.5px 0;
  }

  .logo img {
      width: 150px;
  }

  section {
      padding: 0 10%;
  }
}
@keyframes scrollLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-33.333%);  
  }
}

.launching {
  border: 2px solid #1F0B38;
  background-color: transparent;
  text-align: center; 
  font-size: 24px;
  border-radius: 99px;
  margin-bottom: 25px;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  position: relative;
}

.scrolling-text {
  display: inline-block;
  animation: scrollLeft 15s linear infinite;
  white-space: nowrap;
}

.launching span {
  color: #1F0B38;
  padding-right: 30px; 
}
