* {
	color: #777;
	font-family: 'Roboto', sans-serif;
	text-transform: uppercase;
	text-align: center;
	margin: 0;
	padding: 0;
	overflow: hidden;
	box-sizing: content-box;
}
a, a:visited {
	color: #e39a3c;
	text-decoration: none;
}
a:hover {
	color: #ffab40;
	text-decoration: none;
}

.gral {
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}
main {
	width: 100%;
	max-width: 1000px;
	height: 90vh;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10%;
}
.image {
	width: 45%;
}
.image img {
	width: 100%;
	max-width: 600px;
	display: flex;
	margin: 0 auto;
}
.text {
	width: 45%;
	min-width: 260px;
}
h1 {
	color: #000;
	font-size: 32px;
	line-height: 36px;
	font-weight: 900;
}
.built {
	font-size: 16px;
	line-height: 20px;
	font-weight: 300;
}
footer {
	
	width: 100%;
	height: 10vh;
	font-size: 13px;
	font-weight: 500;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}
footer div {
	padding-bottom: 2vh;
}
@media (orientation: portrait) {
	main {
		flex-direction: column;
		gap: 5%;
	}
	.image {
		width: 90vw;
	}
	.text {
		width: 90vw;
	}
}