/* Fontes */

@font-face {
	font-family: 'Ubuntu Light';
	src: url('fonts/Ubuntu Light.ttf');
}

@font-face {
	font-family: 'FrenchPress';
	src: url('fonts/FrenchPress.ttf');
}

/* Body */

* {
	font-family: 'Ubuntu Light';
	font-size: 17px;
}

body {
	background: radial-gradient(circle at 25% 25%, #c33a47 0%, #9a2f88 40%, #60207a 100%);
}

h1 {
	font-size: 36px;
}
h2 {
	font-size: 28px;
}

/* Tema */

.tema {
	text-align: center;
	color: rgba(240, 240, 240, 1.0);
	font-family: 'FrenchPress';
	font-size: 128px;
	font-weight: 400;
	margin: 0;
	padding: 0.25%;
	box-sizing: border-box;
}

/* Descubra */

.descubra {
	width: 80%;
	background: rgba(240, 240, 240, 0.7);
	text-align: center;
	margin: 2% auto;
	border: 1px solid rgba(20, 20, 20, 0.2);
	border-radius: 4px;
	padding: 1%;
	box-sizing: border-box;
	transition: 0.5s;
}

.descubra:hover {
	transform: scale(1.05);
	cursor: alias;
}

/* Local */

.local {
	width: 65%;
	background: rgba(233, 231, 33, 0.7);
	text-align: center;
	margin: 2% auto;
	border: 1px solid rgba(20, 20, 20, 0.2);
	border-radius: 4px;
	padding: 1%;
	box-sizing: border-box;
	transition: 0.5s;
}

.local:hover {
	transform: scale(1.05);
	cursor: alias;
}

/* Contato */

.contato {
	position: fixed;
	right: 1.25%;
	bottom: 2%;
	transition: 0.5s;
}

.contato img {
	width: 60px;
	height: auto;
	display: block;
	margin: 2% auto 5%;
}

.contato span {
	color: rgba(240, 240, 240, 1.0);
	display: block;
	text-align: center;
	transition: 0.5s;
}

.contato:hover {
	transform: scale(1.05);
	cursor: pointer;
}

.contato:hover > span {
	color: rgba(233, 31, 31, 1.0);
}

/* Responsivo */

@media screen and (max-width: 768px) {

	.tema {
		font-size: 74px;
	}

	.descubra {
		margin-bottom: 3%;
	}

	.local {
		width: 75%;
		margin-top: 3%;
	}

	.contato img {
		width: 50px;
	}

}