* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html {
    scroll-behavior: smooth;
  }
  .background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Places video behind all other content */
}
  
  body {
    font-family: 'Poppins', sans-serif;
    color: #fcfbf7;
    
  }
  
  .container {
    max-width: 100%;
    margin: 0 auto;
  }
  
  /* Navbar */
  .navbar-container {
    display: flex;
    font-size: 1.5em;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #070707;
  }
  
  .brand-logo {
    width: 50px;
  }
  
  .list {
    display: flex;
    gap: 100px;
    list-style: none;
  }
  
  .list-item a {
    color: white;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
  }
  
  .list-item a:hover {
    color: #f3eff4;
  }
  
  .nav-btn a{
    background-color: #f3f5f6;
    color: rgb(12, 12, 12);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  /* Banner */
  .banner-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 40px;
    color: rgba(255, 255, 251, 0.914);
    background-image: url('https://img.freepik.com/free-photo/abstract-design-with-colorful-patterns-nature-leaf-generated-by-ai_188544-15573.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw; /* Full viewport width */
    height: 100vh; /* Full viewport height */
    overflow: hidden;
}



  
h1 {
  font-size: 6em; /* Adjust size as needed */
  background: linear-gradient(45deg, #f81da8, #f0f81f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: bold;
  text-align: center; /* Center-aligns the heading */
  margin-bottom: 120px; /* Adds some spacing after the heading */
    
}

  .subheading-text {
    font-size: 4em;
  }
  
  .subheading-text span {
    color: #fdfd33;
  }
  
  .description {
    margin-top: 10px;
    font-size: 2em;
  }
  
  
  
  .btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #5da1d3;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  /* Poems */
  #poems {
    text-align: center;
    padding: 50px 20px;
  }
  
  .poems-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .poem {
    background: linear-gradient(45deg, #7edaf9, #2b0486); /* Gradient background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

  
  .read-more {
    color: #f3eff4;
    font-weight: bold;
  }
  
  /* Collaborations */
  #collaborations {
    text-align: center;
    padding: 50px 20px;
  }
  
  .collaboration-container {
    display: flex;
    gap: 20px;
    justify-content: center;
  }
  
  .collaboration {
    width: 45%;
    background-color: white;
    color:black;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .collaboration img {
    width: 100%;
    border-radius: 5px;
  }
  
  /* Competitions */
  #competitions {
    text-align: center;
    padding: 50px 20px;
  }
  
  .competitions-container {
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* About Us */
  #about-us {
    text-align: center;
    padding: 50px 20px;
  }
  
  .about-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  
  .about-container p {
    font-size: 1.1em;
    margin-bottom: 20px;
  }
  
  .about-image {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    margin-top: 10px;
  }
  
  /* Contact */
  #contact {
    text-align: center;
    padding: 50px 20px;
  }
  
  #contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
  }
  
  input, textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
  }
  
  button[type="submit"] {
    padding: 10px 20px;
    background-color: #5da1d3;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  /* Footer */
  footer {
    background-color: #0c0c0c;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 0.9em;
  }
  