#section-contact {
	justify-content: space-around;
}

#contact-title-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 22px;
}

#contact-mail-container {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px
}

#contact-mail-container a {
	color: white;
	font-size: 23px;
	text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
	transition: text-shadow 0.3s ease-in-out;
}

#contact-mail-container a:hover {
	text-shadow: 0 0 15px rgba(255, 255, 255, 1);
}

#contact-mail-container button {
	color: white;
	border: none;
	background: none;
	cursor: pointer;
	transition: transform 0.3s ease-in-out;
}

#contact-mail-container button:hover {
	transform: rotateZ(10deg);
}

#contact-mail-container button:active {
	transition: 0.1s ease-in-out, color 0.1s ease-in-out;
	transform: translateY(-15px);
}

#contact-mail-container img {
	width: 40px;
	height: 40px;
}

.contact-container {
	text-align: center;
	padding: 30px 0;
	z-index: 1;
}

.contact-links {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-bottom: 25px;
}

.contact-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: #fff;
	transition: transform 0.3s ease;
}

.contact-item:hover {
	transform: translateY(-5px);
}

.contact-icon {
	width: 50px;
	height: 50px;
	margin-bottom: 10px;
	border: solid 2px #E55055;
	background-color: #28205B;
	border-radius: 50%;
	padding: 8px;
}

.contact-icon>img {
	width: 32px;
	height: 32px;
	margin: auto;
}

.contact-icon svg {
	width: 100%;
	height: 100%;
}

.construction-text {
	font-family: 'PressStart2P', cursive;
	color: #887;
	font-size: 1.2rem;
}

@media (max-width: 768px) {
	#contact-title-container {
		font-size: 18px;
		text-align: center;
		padding: 0 10px;
	}

	#contact-mail-container {
		flex-direction: column;
		gap: 10px;
	}

	#contact-mail-container a {
		font-size: 14px;
	}

	.contact-links {
		flex-direction: row;
		gap: 20px;
	}
}