body {
  margin: 0;
  padding: 0;
  font-family: 'open-sans', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  text-align: center;
  padding: 10px;
  background: linear-gradient(90deg, #faea5f, #f1da36);
}

.logo {
  margin-top: -30px;
  width: 250px;
}

header h1 {
  font-family: 'poppins', sans-serif;
  font-size: 1.6rem;
  margin: 0;
  color: #222;
  letter-spacing: 1px;
}

main {
  position: relative;
  overflow: hidden;
  height: 70vh;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

main .content {
  position: relative;
  z-index: 2;
  color: white;
  align-items: center;
  text-align: center;
  padding: 100px 20px;
}

main .content h2 {
  font-family: 'poppins', sans-serif;
  font-size: 3rem;
  margin-bottom: 10px;
}

main .content p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

footer {
  background: linear-gradient(90deg, #faea5f, #f1da36);
  text-align: center;
  padding: 10px;
  font-size: 1rem;
}
footer a{
   color: #222;
   text-decoration: none;
}
footer a:hover{
    text-decoration: underline;
}

@media(max-width:768px){
    main .content{
        padding: 120px 20px;
    }
    main .content h2{
        font-size: 2.2rem;
        margin-top: -10px;
    }
}
