* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100vh;
	width: 100%;
	overflow: hidden;
	margin: 0;
	font-family: Solway, serif;
	padding: 20px;
}

.content-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-height: 100%;
}

img {
	pointer-events: none;
	user-select: none;
	max-width: 60%;
	max-height: 60vh;
	width: auto;
	height: auto;
	object-fit: contain;
}

.email {
	margin-top: 30px;
	font-size: 22px;
}

.social-media {
	margin-top: 10px;
	display: flex;
	gap: 15px;
}

.social-media a {
	color: black;
	text-decoration: none;
	font-size: 18px;
}

.social-media a:hover {
	text-decoration: underline;
}

/* Media queries para adaptación a diferentes dispositivos */
@media (max-width: 768px) {
	img {
		max-width: 90%;
		max-height: 50vh;
	}
	
	.email {
		font-size: 16px;
	}
	
	.social-media a {
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	img {
		max-width: 95%;
		max-height: 45vh;
	}
	
	.email {
		font-size: 15px;
	}
	
	.social-media a {
		font-size: 14px;
	}
}
