@charset "UTF-8";
/* CSS Document */


* {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}
body
{
	margin: 0px;
}

html
	{
		margin: 0px;
		background-color: black;
		font-family: Arial," sans-serif";
		font-size: 2vw;  /* TODAS LAS CASILLAS DE LOS GRUPOS VAN PROPORCIONALES A ESTA CIFRA **********************************************/
		color: white;
		display: flex;
		flex-direction: column;
		justify-content: flex-start; /* EJE PRINCIPAL */
		align-items: flex-start; /* EJE SECUNDARIO */
		align-content: center;
		text-align: center;
		overflow: hidden;
	}

	.contenedor_principal
	{
		margin: 0px;
		margin-top: 5vh;
		min-width: 100vw;
		width: 100vw;
		min-height: 92vh;
		background-color: black;
		background-image: url(https://competicion.tecnosuperliga.com/imagenes/fondos/tema_1/fondo_general.jpg);
		background-repeat: repeat;
		background-attachment: fixed;
		display: flex;
		flex-direction: column;
		justify-content: space-around; /* EJE PRINCIPAL */
		align-items: center; /* EJE SECUNDARIO */
		align-content: center;
		text-align: center;
		padding: 0.2rem;
		border-radius: 1vw;
	}
		
		
	.contenedor_cabecera
		{
			background-image: url(https://competicion.tecnosuperliga.com/imagenes/fondos/tema_1/fondo_cabecera.jpg);
			background-size:cover;
			background-position: center;
			padding: 0.2rem;
			padding-left: 5rem;
			padding-right: 5rem;
			top: 0px;
			left: 0px;
			display: flex;
			justify-content: center;
			align-items: center;
			text-align: center;
			font-size: 1.2rem;
			font-weight: bold;
			min-width: 100vw;
			box-sizing: border-box;
			height: 5vh;
			min-height: 1.5rem;
			background-color: black; 
			color:white;
			z-index: 1;
			position: fixed;
		}

.no_select
	{
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
	}
