
	body.uno{
		/* Location of the image */
		background-image: url(../images/bg14.jpg);

		
		/* Background image is centered vertically and horizontally at all times */
		background-position: center center;
		
		/* Background image doesn't tile */
		background-repeat: no-repeat;
		
		/* Background image is fixed in the viewport so that it doesn't move when 
			the content's height is greater than the image's height */
		background-attachment: fixed;
		
		/* This is what makes the background image rescale based
			on the container's size */
		background-size: cover;
		
		/* Set a background color that will be displayed
			while the background image is loading */
		background-color: #464646;
	}
	
	body.dos{
		
		display: flex;
		align-items: center;
		justify-content: center;
		height: 100vh;
		text-align:center;
		
		/* Location of the image */
		background-image: url(../images/bg15.jpg); 

		
		/* Background image is centered vertically and horizontally at all times */
		background-position: center center;
		
		/* Background image doesn't tile */
		background-repeat: no-repeat;
		
		/* Background image is fixed in the viewport so that it doesn't move when 
			the content's height is greater than the image's height */
		background-attachment: fixed;
		
		/* This is what makes the background image rescale based
			on the container's size */
		background-size: cover;
		
		/* Set a background color that will be displayed
			while the background image is loading */
		background-color: #464646;
		

	}
	
	.datos{
		border: gray 1px solid; 
		font-size:15px;
		width:280px; 
		height:35px;
		border-radius: 5px;
		text-align:center;
		background-color:transparent
	}
	
	.btn_transparente{
		color:black; 
		background:white; 
		border: gray 1px solid; 
		border-radius: 5px; 
		width:100px;
	}
 
    .centered-table {
      border-collapse: collapse;
    }
 