#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    
  }

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    color: #f1f1f1;
   
    
  }


body {
    font-family: "Outfit";
}

h1 {
    font-size: 5vmax;
    color: white;
    text-shadow: 2px 2px black;
  }


h1:hover {
    
    text-shadow: 3px 2px black;
    /*color:#bd1341; */
    
    transition: all 0.25s ease-in-out;
    -moz-transition: all .55s ease-in-out;
    -webkit-transition: all .55s ease-in-out;
  }


h2 {
    
    color: white;
    font-weight: 400;
    font-size: 0.8vmax; 
    position: absolute;
    
    bottom: 10%;
    left: 1%;
    transform: translate(0,-50%); 
    text-shadow: 1px 1px black;
    color:#FF9900;
 
}


  p.logo {
    color: transparent;
    position: absolute;
    font-size: 30vw;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -130%);
    text-shadow: 0 0 5px rgba(255, 153, 0, 0.01);
    transition: all 0.5s ease-in-out; /* Include transition in the base state */
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

p.logo:hover {
    text-shadow: 0 0 5px rgba(255, 153, 0, 0.5);
}
