@import url("https://use.typekit.net/yaw6tky.css");

* {
	margin: 0;
	padding: 0;
}

/*
font-family: "univia-pro", sans-serif;

font-weight: 400;
font-weight: 700;

font-style: normal;
font-style: italic;
*/

html, body {
	height: 100%;
}


.home {
	width: 100%;
	height: auto;
	min-height: 100%;
	display: flex;
    align-items: center;
    background-color: #213342;
}

.home img {
	width: 300px;
	margin-bottom: 50px;
}

.home h1 {
	font-family: "univia-pro", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 1.6rem;
	color: #fff;
}

.rodape {
	width: 100%;
	height: auto;
	background-color: #b38211;
	padding: 10px;
}

.conteudo-rodape {
	display: flex;
	align-items: center;
	flex-direction: column;
}

.conteudo-rodape img {
	width: 150px;
	margin: 15px 0px;
}

.conteudo-rodape p {
	font-family: "univia-pro", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.2rem;
	color: #213342;
	text-align: center;
	margin-bottom: 0px;
}

.conteudo-rodape a {
	font-family: "univia-pro", sans-serif;
	font-weight: 400; 
	font-style: normal;
	font-size: 1.2rem;
	color: #213342;
	text-align: center;
	text-decoration: none;
}

.conteudo-rodape i {
	font-size: 1.8rem;
}

.conteudo-rodape a:hover {
	color: #fff;
	text-decoration: none;
}

@media (min-width: 1024px) {
	.conteudo-rodape {
		display: flex;
		align-items: center;
		flex-direction: row;
		justify-content: space-between;
	}

	.home img {
		width: 400px;
		margin-bottom: 50px;
	}
}