/* style.css */

body {
  width:100vw;
  font-family: sans-serif;
  background-color: #000;
  color: #fff;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}
html {
  scroll-behavior: smooth;
}
/* General styling */

a {
  color: #BB91F8;
  text-decoration: none;
}

p {
  font-size: 16px;
  line-height: 1.5;
}

/* Navigation bar */

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;

  font-size: 16px;
}

.logo {
  font-weight: bold;
}

/* Main section */
hr {
  background-color:white;
}
.main-section {
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 0 20px;
}
h2 {
  color:white
}
.main-section  {
  font-size: 16px;
  font-weight: bold;
  color: #2196f3; /* Use a darker shade of blue for a minimal contrast */
  margin-bottom: 20px;
}

h1 {
  font-size: 72px;
  background: -webkit-linear-gradient(#eee, #fc5aff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.h1 {
margin-top: -10vw;
  font-size: 13vw;
  line-height:11vw;
  letter-spacing: -0.3vw;
  font-weight: bold;
  margin-bottom: 20px;
}

.button {
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  padding: 2vw 4vw;
  border-radius:40px;
  background-color: #007bff; /* Use a darker shade of blue for a stronger contrast */
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 2vw;
}
.purple {
  color:#BB91F8;
}
.button:hover {
  background-color: #fc5aff;
  transition: background-color 0.5s ease-in-out;
}
/* Video section */

.video-section {
  padding: 20px;
  background-color: #000;
  text-align: center;
}

.video-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.video {
  width: 60vw;
  
  border: 5px solid #fff;
}

/* Footer */

footer {
  padding: 20px;
  
  font-size: 12px;
  text-align: center;
}
