*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background-image: linear-gradient(rgb(0, 0, 2), rgb(2, 2, 49),rgb(30, 29, 29));
    min-height: 100vh;
}
.header{
    width: 90vw;
    height: auto;
    margin: 50px auto;
}
.header nav{
    width: 100%;
    height: 60px;
    background-color: black;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.54);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;

}
.header nav h1{
    color: rgb(255, 255, 255);
    font-family: poppins;
    font-weight: 400;
    margin-left: 40px;
    font-size: 22px;
}
.header nav .menu ul{
    display: flex;
    list-style: none;
}
.header nav .menu ul li a{
    text-decoration: none;  
    color: white;
    font-family: ubuntu;
    margin-right: 40px;
    transition: 0.4s ease-in;

}
.header nav .menu ul li a:hover{
    color: rgb(16, 93, 246);
}
/* text-decoration :none to remove underline */

/* -----CODE FOR CAROUSEL/SLIDER---- */
.carousel {
  position: relative;
  width: 700px;
  height: 400px; /* Set a fixed height */
  margin: 60px auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  width: 1500px;
  height: 500px;
  object-fit: cover;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 2rem;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}
.carousel .carousel-track img{
    width: 100%;
}
.content h1{
    font-family: poppins;
    font-size: 60px;
    color: rgb(255, 170, 33);
    text-align: center;
}
/* ------video----- */

.content video{
    width: 100%;
    margin-top: 30px;
}
