@media screen and (max-width: 400px) {
    html {
        font-size: 18px;
    }
}
@media screen and (max-width: 1200px) {
    html {
        font-size: 22px;
    }
}
@media screen and (min-width: 1201px) {
    html {
        font-size: 20px;
    }
}
@media screen and (min-width: 1600px) {
    html {
        font-size: 22px;
    }
}
@media screen and (min-width: 2200px) {
    html {
        font-size: 28px;
    }
}
@media screen and (min-width: 3200px) {
    html {
        font-size: 36px;
    }
}
@media screen and (min-width: 3800px) {
    html {
        font-size: 42px;
    }
}
@media screen and (min-width: 4600px) {
    html {
        font-size: 50px;
    }
}
@media screen and (min-width: 5200px) {
    html {
        font-size: 60px;
    }
}
@media screen and (min-width: 6200px) {
    html {
        font-size: 72px;
    }
}

.profile-image {
	border: 0;
	border-radius: 50%;
	box-shadow: 0 0 0.9rem rgba(0, 0, 0, 0.1), 0 0 0.3rem rgba(0, 0, 0, 0.05);
	object-fit: cover;
	overflow: hidden;
	display: block;
	margin: 0 auto;
	cursor: pointer;
}

.content-container {
	background-color: white;
	border-radius: 0.5rem;
	box-shadow: 0 0.65rem 0.9rem rgba(0, 0, 0, 0.1), 0 0.25rem 0.3rem rgba(0, 0, 0, 0.05);
	padding: 1.5rem;
}

.share-buttons {
	display: flex;
	gap: 0.6rem;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 0.35rem;
	margin-bottom: 0.85rem;
}

.share-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.4rem 0.4rem;
	border: none;
	border-radius: 0.8rem;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	font-size: 0.64rem;
	font-weight: 500;
	color: white;
	cursor: pointer;
	transition: all 0.2s ease;
}

.share-button:hover {
	transform: translateY(-1.6px);
	box-shadow: 0 0.2rem 0.72rem rgba(0, 0, 0, 0.1);
}

.share-button:active {
	transform: translateY(0);
}

.share-icon {
	width: 0.8rem; 
	height: 0.8rem;
	fill: currentColor;
}

/* Social Media Colors */
.facebook {
	background-color: #1877f2;
}

.facebook:hover {
	background-color: #166fe5;
}

.twitter {
	background-color: #000000;
}

.twitter:hover {
	background-color: #000000;
}

.whatsapp {
	background-color: #25d366;
}

.whatsapp:hover {
	background-color: #22bf5b;
}

.copy-link-button {
	background-color: #b8b8b8;
}

.copy-link-button:hover {
	background-color: #878787;
}

.mobile-menu-container-hidden {
	display: none;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.mobile-menu-container-visible {
	display: block;
	opacity: 1;
	transition: opacity 0.3s ease;
}

.header-site {
	width: 100%;
	background: rgba(0, 0, 0, 0);
}

.header-menu-container {
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
}

.navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo-container {
	display: flex;
	align-items: center;
}

.logo {
	font-size: 1.5rem;
	font-weight: bold;
	color: #ffffff;
}

.logo-image {
	height: 2rem;
}

.desktop-menu {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.menu-link {
	color: #000000;
	transition: color 0.3s ease;
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0);
	border-color: rgba(0, 0, 0, 0);
	text-decoration: none;
	font-weight: 550;
	font-size: 1rem;
}

.menu-link:hover {
	color: #4a59ff;
}

.mobile-menu-button {
	display: none;
}

.menu-toggle-button {
	background-color: rgba(0, 0, 0, 0);
	border: rgba(0, 0, 0, 0);
	transition: color 0.3s ease;
}

.menu-toggle-button:hover {
	color: #c6d8ff;
}

.menu-toggle-button:focus {
	outline: none;
}

.menu-icon {
	font-size: 1.5rem;
}

.text-end {
	text-align: start;
}

.body-style {
	background-color: white;
  	font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.content-container-area {
	max-width: 90%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
	padding-top: 0;
	padding-bottom: 2rem;
}

.lang-btns-container {
	display: flex;
	justify-content: center;
	margin-bottom: 1.5rem;
	margin-top: 1.5rem;
}

.text-info {
	margin-bottom: 1rem;
}

.lang-tab {
	padding: 0.5rem 1rem;
	border-top-left-radius: 0.375rem;
	border-top-right-radius: 0.375rem;
	box-shadow: 0 0.65rem 0.9rem rgba(0, 0, 0, 0.1);
}

.text-center {
	font-size: 1rem;
}

.profile-container {
	display: flex;
	max-width: 100%;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.profile-picture {
	width: 6.5rem;
	margin: 1rem;
}

.text-2xl {
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 0.5rem;
}

.text-xl {
	font-size: 1.15rem;
	margin-bottom: 0.5rem;
}

.name-container {
	text-align: center;
	margin: 1rem;
}

@media (max-width: 1000px) {
	.header-menu-container {
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
		padding-left: 0.5rem;
		padding-right: 0.5rem;
		padding-top: 0.5rem;
		padding-bottom: 0.75rem;
	}

	.logo-container {
		max-width: 75%;
	}

	.content-container-area {
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
		padding-left: 1rem;
		padding-right: 1rem;
		padding-top: 0;
		padding-bottom: 1rem;
	}

	.profile-container {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 0.5rem;
	}

	.profile-picture {
		width: 6rem;
	}

	.mobile-menu-button {
		display: block;
		background-color: rgba(0, 0, 0, 0);
		border-color: rgba(0, 0, 0, 0);
	}

	.desktop-menu {
		display: none;
	}

	.mobile-menu-container-visible {
		background-size: cover;
		background-position: center;
		background-attachment: fixed;
		height: 90vh;
		display: flex;
		align-items: center;
		justify-content: center;
		overflow: hidden;
		position: relative;
		background-color: white;
		display: flex;
		flex-direction: column;
		gap: 1rem;
		min-height: max-content;
		min-width: max-content;
	}

	.mobile-menu-text {
		color: rgb(0, 0, 0);
		font-size: 1.2rem;
		transition: color 0.3s ease;
		background-color: rgba(0, 0, 0, 0);
		border-color: rgba(0, 0, 0, 0);
		text-decoration: none;
	}

	.mobile-menu-text:hover {
		color: rgba(157, 157, 157, 0.5);
	}

	.text-start {
		text-align: left;
	}

	.text-end {
		text-align: right;
	}

	.profile-picture {
		width: 5rem;
		margin: 0.5rem;
	}

	.name-container {
		text-align: center;
		margin: 0;
	}

	.text-2xl {
		font-size: 1.15rem;
		font-weight: bold;
		margin: 0.25rem;
		line-height: normal;
	}

	.text-xl {
		font-size: 1.05rem;
		margin: 0.25rem;
		line-height: normal;
	}

	.text-center {
		font-size: 1rem;
	}

	.lang-tab {
		padding: 0.25rem 0.75rem;
		border-top-left-radius: 0.25rem;
		border-top-right-radius: 0.25rem;
		box-shadow: 0 0.25rem 0.65rem rgba(0, 0, 0, 0.1);
		transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
	}

	.text-info {
		margin-bottom: 0.5rem;
	}

	.lang-btns-container {
		display: flex;
		justify-content: center;
		margin-bottom: 1rem;
		margin-top: 0.75rem;
	}

	.content-container {
		padding: 0.5rem;
	}

	.profile-info {
		padding: 0.5rem;
	}
}