*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'poppins', sans-serif;
}

.header{
  width: 100%;
  height: 100vh;
  background-color: chocolate;
  padding: 0 10%;
  position: relative;
}

.header img{
  float: left;
  width:100px;
  height:100px;
  
}

.header h1{
  position:relative;
  top:18px;
  left: 0px;
  font-size: 85px;
  font-style: oblique;
  color: cornsilk;
}

nav{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0 10px;
}

nav ul li{
  display: inline-block;
  list-style: none;
  margin: 10px 30px;
}

.logo{
  width: 160px;
  cursor: pointer;
  padding-top: 5px;
  
}

nav ul li a{
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  letter-spacing: 1px;
}

nav ul li a:hover{
  color: rgb(7, 6, 6);
}

.video{
  max-width:100%;
  
  float: right;
  }

  .text-box{
    margin-top: 8%;
    font-size: 22px;
  }

  .text-box h1{
    font-size: 60px;
    font-weight:600;
    margin-bottom: 10px;
    color:rgb(246, 246, 49);
  }
   .text-box p{
    font-size: 30px;
    line-height: 50px;
    color:aquamarine;
   }

   .text-box .btn{
    display:inline-block;
    background: rgb(211, 27, 192);
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    margin: 30px 0;
    transition: 0.5s;
   }

   .booknow{
    position: absolute;
    right: 7%;
    bottom: 60px;
    display: flex;
    align-items: center;
    color: rgb(35, 3, 138);
    padding: 20px 40px;
    border-radius: 40px;
    font-size: 20px;
    font-style:bold;
    transition: background 0.5s;
   }

   .booknow img{
    width: 25px;
    margin-left: 15px;
    animation: move 2s linear infinite;
   }

   @keyframes move{
    0%{
      transform: translateY(-10px);
    }
    50%{
      transform: translateY(10px);
    }
    100%{
      transform: translateY(-10px);
    }
   }

   .booknow:hover{
    background: rgb(211, 27, 192);
   }
