		* {
			padding: 0;
			margin: 0;
			box-sizing: border-box;
		}

		body, html {
			background-color: #1D365D;
		}

		.fondo {
			position: relative;
			width: 100%;
			height: 100vh;
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: center;
		}
		.marco {
			position: relative;
			width: 100%;
			max-width: 1280px;
			height: 100%;
			max-height: 720px;
			background-color: #1D365D;
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: center;
		}

		#vid {
			position: relative;
			width: 100%;
			height: 100%;
			z-index: 20;
			border: 20px solid #1D365D; 
		}

		#inter {
			position: absolute;
			margin: -1px;
			width: 100%;
			max-width: 1280px;
			height: 100%;
			max-height: 720px;
			background: url(../img/car.png);
			background-size: contain;
			background-position: center center;
			background-repeat: no-repeat;
			z-index: 30;
		}

		#logos {
			position: absolute;
			width: 100%;
			max-width: 1280px;
			height: 100%;
			max-height: 720px;
			background: url(../img/car.svg);
			background-size: contain;
			background-position: center center;
			background-repeat: no-repeat;
			z-index: 40;
		}
		.texto {
			position: absolute;
			bottom: 10%;
			text-align: center;
			color: #666699;
			font-size: 20px;
			font-weight: bold;
			text-shadow: 5px 5px 5px #222222;
			z-index: 50;
		}