:root{
  --gfk-orange: #EA5B0C;
  --gfk-highlight-yellow-700: #F58A27;
  --gfk-highlight-yellow-500: #FFA52F;
  --gfk-highlight-yellow-300: #FDC166;
  --gfk-highlight-yellow-100: #FFEBCC;

}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	overflow-x: hidden;
}
body {
	margin: 0;
	padding: 0;
	font-family: Arial, sans-serif;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	
	background-image: url('../img/pattern-randomized.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.content {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 20px;
}
		

.logotipo{
	max-width: 100%;
	width: 60%;
	height: auto;
	margin-bottom: 15px;
}
.title{
	font-size: 5rem;
	font-weight: 600;
	letter-spacing: 0.8rem;
	color: var(--gfk-orange);
}
.sub-title{
	font-size: 1.6rem;
	font-weight: bold;
	color: gray;
}

footer {
	background-color: hsla(0, 0%, 20%, 0.85);
	color: white;
	text-align: center;
	padding: 20px 0;
}

footer a {
	color: var(--gfk-orange);
	font-weight: bold;
	text-decoration: none;
}

footer a:hover {
	text-decoration: underline;
}

.social-icons {
	margin: 20px 0;
}

.social-icons a {
	margin: 0 10px;
	text-decoration: none;
}

.social-icons img {
	width: 30px;
	height: 30px;
	vertical-align: middle;
}

.rights {
	font-size: 14px;
	color: #aaa;
}


@media (max-width: 768px) {
	.logotipo {
		width: 200px;
	}

	.title {
		font-size: 2rem;
	}

	.sub-title {
		padding: 10px;
		font-size: 1.5rem;
	}

	footer {
		padding: 10px 0;
	}

	.social-icons img {
		width: 20px;
		height: 20px;
	}

	.rights {
		font-size: 10px;
	}

}