body{
    margin:0;
    padding:0;
}

#hero{
position: relative;
}

#hero video{
    height: 99vh;
    width:100%;
    background-position:absolute;
    z-index:10;
    object-fit:cover;
    right: 0;
    bottom: 0;
    min-width: 100%; 
    min-height: 100%;
}

#hero .content {
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
    z-index: 20;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    text-align: center;

   display: flex; 
   align-items: center;
   justify-content: center;
}

#hero .content h1{
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

#hero .content p{
    font-size: 20px;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

a{
    transition: transform 0.5s ease;
    background-color: rgb(0, 0, 0);
    font-size: 20px;
    border-radius: 20px;
    padding: 10px;
    display: block;
    text-align: center;
    margin: 20px;
    color: rgb(255, 255, 255);
    text-decoration: none;
    box-shadow: 15px 8px 8px rgba(0, 0, 0, 0.2);
  }
  a:hover{
    transform: scale(1.05);
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
  }
  @keyframes bounce {
  40% {transform: translateY(-10px);} 
  60% {transform: translateY(-5px);}
   0%,20%,50%,80%,100% {transform: translateY(0);}
  }

  img {
    animation: bounce 3.5s infinite;
    border-radius: 75px;
    margin-top: 20px;
    -webkit-filter: blur(0.5px); /* Safari 6.0 - 9.0 */
    filter: blur(0.5px);
  }

  .btn{
    position: relative;
    background-color: transparent;
    border: 1px solid #3b3b3b;
    color:#3b3b3b;
    padding: 12px 24px;
    font-size: 16px;
    text-transform: uppercase;
    transition: color 400ms;
  }

  .btn::before{
    content: "";
    position: absolute;
    inset: 0;
    display: inline-block;
    background-color: #3b3b3b;
    transform: scaleX(0);
    transform-origin: right;
    z-index: -1;
    transition: transform 400ms;
  }
  .btn:hover{
    color: white;
  }
  .btn:hover::before{
    transform: scaleX(1);
    transform-origin: left;
  }

