﻿     body {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
            background-color: #f2f2f2; /* Color de fondo general */
            /*overflow-x: hidden;*/ /* Ocultar la barra de desplazamiento horizontal */
            /*background: linear-gradient(to bottom, #7ad7ff, #ffe87a);*/
            background: linear-gradient(to bottom, #eaeaea, #c4c4c4) no-repeat center center fixed;
            /*height: 100vh;
            align-items: center;*/
            /*background-repeat: no-repeat;*/
            background-size: cover;
        }
     	main {
		/*ESTO ES EL 100% DE LA PANTALLA MENOS TODOS LOS DEMAS COMPONENTES QUE PUEDEN EXISTIR EN LA PAGINA (footer, banner, menu superior...)*/
		/*RECLACULAMOS, PORQUE HAY QUE AÑADIR EL ALTO QUE AUMENTA EL MENU SUPERIOR CONFORME AUMENTA EL ANCHO DE PANTALLA*/
		min-height: calc(100vh - 535px);
	}
        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #333; 
            color: white; /* Color del texto */
            padding: 10px;
            box-sizing: border-box;
            text-align: center;
            z-index: 999;
        }

        .container {
            display: flex;
            justify-content: center;
            align-items: center;
            /*min-height: calc(100vh - 180px);*/ /* Altura mínima de la pantalla menos la altura del nav y del footer */
            flex-direction: column;
        }


        .footer-social-icons li {
            display: inline;
            margin: 0 10px;
        }

        .footer-social-icons a {
            color: white; /* Color de los iconos */
            font-size: 20px;
            color: white;
        }

.EstiloBody {
margin: 84px 0px 0px 0px;
text-align: left;
font-family: "Trebuchet MS",Helvetica,Jamrul,sans-serif;
color: #000000;
font-size: 20px;
/*background-color:green;*/
}

.LimpiaMargenes {
  height: 0;
  clear: both;
  float: none;
  display: block;
}

.imgLogo{
    width: 380px;
    height: auto;
    vertical-align: middle;
    float:left; 
}


/*** PIE ***/
.ContenedorPie {
	background-position: left top;
	clear: both;
	float: none;
	width: 100%;
	text-align: center;
	margin: 10px 0 0px 0;
	background: #CDC6D2 repeat-x left top;
	padding: 14px 0 0px 0;
	background-color: #333;
    color: white;
    box-sizing: border-box;
    z-index: 999;
    position: fixed;
    bottom: 0;
    font-size: 30px;
    line-height: 30px;
    height: 179px;
}


/*PANTALLA DE LAPTOP, TABLET...*/
@media only screen and (min-width: 600px) and (max-width:899px) {
    .EstiloBody {
        margin: 5px 0px 0px 0px;
        font-size: 12px;
        /*background-color:blue;*/

    }
    .imgLogo{
        width: 250px;
        height: auto;
    }
    .ContenedorPie{
	font-size: 14px;
	line-height: 16px;
	height: 100px;
    }
}

/*PANTALLA DE PC*/
@media only screen and (min-width: 900px) {
    .EstiloBody {
        font-size: 12px;
        margin: 5px 0px 0px 0px;
        /*background-color:red;*/
}
    .imgLogo{
        width: 250px;
        height: auto;
    }
    .ContenedorPie{
        font-size: 14px;
	    line-height: 16px;
	    height: 100px;
    }
    	main {
		/*ESTO ES EL 100% DE LA PANTALLA MENOS TODOS LOS DEMAS COMPONENTES QUE PUEDEN EXISTIR EN LA PAGINA (footer, banner, menu superior...)*/
		/*RECLACULAMOS, PORQUE HAY QUE AÑADIR EL ALTO QUE AUMENTA EL MENU SUPERIOR CONFORME AUMENTA EL ANCHO DE PANTALLA*/
		min-height: calc(100vh - 575px);
	}
}
