/* @version 1.0.1 
   @author Mellvin Beltre Martinez
   @copyright Copyright (c) 2025 BL3TECH */

	body {
	  margin: 0;
	  font-family: Arial;
	  font-size: 17px;
	}

	#myVideo {
	  position: fixed;
	  right: 0;
	  bottom: 0;
	  --width: 100%;
	  --height: 50%;
	}

	.inline {
		display: inline-block;
	}
	
	.topleft {
	  position: absolute;
	  top: 33px;
	  left: 33px;
	  font-size: 18px;
	  z-index: 999;
	}
	
	.footer {
		position: absolute;
		right: 0px;
		left: 0px;
		margin: 0px auto;
		bottom: 30px;			
	}
	
	.tcenter {
	  position: relative;				
	  margin-left: auto;
	  margin-right: auto;
	  bottom: -310px;	
	}
	
					
	.btne {			
		background-color: rgba(255,255,255,0.1);
		background-repeat: no-repeat;
		overflow: hidden;			
		border-radius: 10px;
		border: 3px solid white;
		color: white;
		cursor: pointer;
		font-size: 0.8rem;
		font-weight: bold;
		letter-spacing: 0.1rem;
		padding: 0.8rem 3rem;
		text-transform: uppercase;
		transition: transform 80ms ease-in;
	}
	
	.btne:active {
		border-color: lightgray;
		transform: scale(0.95);
	}
	
	.btne:focus {		
		box-shadow: 0px 0px 2px 2px #edf0ee;
	}
		
	.btne:hover {
		border: 1px solid white;
		transform: scale(0.95);
		color: white;
	}
	
	