/* Import fonts*/
@font-face {
	font-family: "lato";
	src: url(./../font-lato/Lato-Regular.ttf);
}
@font-face {
	font-family: "lato-bold";
	src: url(./../font-lato/Lato-Bold.ttf);
}

/* Global variables*/
:root {
}

/* Global styles */
html {
	box-sizing: border-box;
	font-size: 62.5%;
	overflow-x: hidden;
}
*,
*:before,
*:after {
	box-sizing: inherit;
	margin: 0;
	padding: 0;
	border: 0;
}
body {
	font-family: "lato";
	height: 100vh;
	min-height: 100vh;
}

hr {
	border-top: 2px solid red;
	width: 25vw;
	margin: 2rem auto;
}
p {
	font-size: 2.3rem;
	text-align: center;
}
p.bold {
	font-weight: bold;
}
@media (min-width: 1200px) {
	p {
		font-size: 2.5rem;
	}
}

.isotipo {
	position: fixed;
	height: 11rem;
	top: 1rem;
	left: 1rem;
}
.logotipo {
	position: fixed;
	height: 5rem;
	top: 1rem;
	right: 1rem;
}

/* Especific styles */

.main {
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
	height: 80vh;
	padding: clamp(15px, 2%, 30px) clamp(40px, 8%, 70px);
}

.title-img {
	height: 10%;
}

.background {
	max-width: 100%;
	height: 100%;
	object-fit: cover;
}

.main-content {
	height: 47vh;
	min-height: 22rem;
	max-height: 35rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.log-in {
	background-color: #000;
	color: #fff;
	font-size: 2rem;
	border-radius: 1rem;
	width: 25rem;
	height: 4rem;
	cursor: pointer;
}
.log-in:hover {
	background-color: rgba(0, 0, 0, 0.8);
}

footer {
	height: 20vh;
	background-color: #000;
	padding: 0 5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-icon {
	height: 7rem;
}
