@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap');

/* CSS Document */
/*Importo los fuentes de google*/
* {
	box-sizing: border-box;
}
html {
	font-size: 1rem;
}
body {
	margin: 0px;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	/*background-image: url("../imagenes/istockphoto-1188030698-612x612.jpg");
	background-size:cover;
	background-attachment:fixed;
	background-position:center;
	background-repeat: repeat;*/
	font-family: 'Roboto', sans-serif;
	line-height: 1.5em;
	opacity:0;
	transition: opacity 1s linear 0s;
	
}
main {
	flex-grow: 1;
}

header, main, footer {
	padding: 1em;
}
p {
	text-indent: 1em;
}
h1 {
	color:black;
}
h2 {
	color:rgba(176,78,26,1.00);
}
h3 {
	color:rgba(176,78,26,1.00);
}
a {
	color: darkcyan;
}
/*al ponerse encima de una imagen o un enlace que cambie el cursor del ratón.*/
img:hover, a:hover {
	cursor:pointer;
}
.ocupatodo {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%
}
/*#iconoWhatsApp {
	transform: translateX(100%) scale(0);
	transition: all 1s ease-in-out 0s;
	margin-bottom: 1em;
}
#iconoWhatsApp > img {
	height: 50px;
	width: auto;
}
#iconoWhatsApp.fuera {
	transform: translateX(90%) scale(1);
	opacity: 1;
}*/