@import url("https://fonts.googleapis.com/css2?family=Hind&family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;1,200&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
 /* header {
  width: 100%;
  height: 100vh;
 background-image: url("../images/home.jpg"); 
  background-image: url("../images/clouds with crops.webm");
  background-size: cover;
  font-family: "Poppins", sans-serif;
}*/
header {
    width: 100%;
    height: 100vh;
    position: relative;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
  }
  
  /* Video styling */
  #bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Make sure the video covers the entire area */
    z-index: -1; /* Put the video behind the content */
  }

nav {
  width: 100%;
  height: 100px;
  color: #fff;
  display: flex;
  justify-content: end;
  align-items: center;
}

nav a{
    margin-right: 15px;
}
.logo {
  font-size: 2em;
  letter-spacing: 2px;
}
.menu a {
  text-decoration: none;
  color: #fff;
  padding: 10px 20px;
  font-size: 20px;
}

.menu a:hover {
  border: 1px solid indianred;
  background: transparent;
}

/* ..................................................... */
/* .register a {
  text-decoration: none;
  color: #fff;
  padding: 10px 20px;
  font-size: 20px;
  border-radius: 8px;
  background: indianred;
}
.register a:hover {
  border: 1px solid indianred;
  background: transparent;
} */


section{
    width: 100%;
    padding: 15px;
}

.h-text {
  position: absolute;
  top: 50%;
  left: 50%;
  /* max-width: 800px; */
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  text-shadow: 0px 0px 8px #0b1411;
}

.h-text h1 {
  font-size: 3.5em;
}

.h-text h3{
    font-size: 1.5em;
    font-weight: 500;
}
/* .h-text a {
  text-decoration: none;
  background: indianred;
  padding: 10px 20px;
  color: #fff;
  letter-spacing: 5px;
  transition: 0.4s;
}
.h-text a:hover {
  border: 1px solid indianred;
  background: transparent;
} */

/* ..................................................... */
button{
    position: relative;
    /* height: 60px;
    width: 200px; */
    padding: 15px 35px;
    border: none;
    outline: none;
    color: white;
    background: #000000;
    cursor: pointer;
    border-radius: 8px;
    font-size: 18px;
    font-family: 'Raleway', sans-serif;
}
button:before{
    position: absolute;
    content: '';
    top: -2px;
    left: -2px;
    height: calc(100% + 4px);
    width: calc(100% + 4px);
    border-radius: 5px;
    z-index: -1;
    opacity: 0;
    filter: blur(5px);
    color: #0b1411;
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    /* background: linear-gradient(45deg, #3e5b74, #a9d0c6,#7792b6, #3e5b74, #a9d0c6,#7792b6, #3e5b74, #a9d0c6,#7792b6); */
    background-size: 400%;
    transition: opacity .3s ease;
    animation: animate 20s infinite;
  }
  button:hover:before{
    opacity: 1;
  }
  button:hover:active{
    background: none;
    color: #0b1411;
  }
  button:hover:active:before{
    filter: blur(2px);
  }
  @keyframes animate {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
  }