body {
	/* font-family: Verdana, sans-serif; */
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	font-family: '.SFNSDisplay-Regular', sans-serif;
	margin: 0;
	padding: 0;
	
  background: rgb(17,99,83);
background: linear-gradient(90deg, rgba(17,99,83,1) 0%, rgba(225,199,111,1) 100%);
    animation: gradient 15s ease infinite;
    background-size: 400% 400%;
    background-attachment: fixed;

	
  }
  
  
  
  
  
h1 {
	text-align: center;
	margin-top: 20px;
	font-size: 28px;
	color: #ffffff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
@keyframes gradient {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.wave {
    background: rgb(255 255 255 / 25%);
    border-radius: 1000% 1000% 0 0;
    position: fixed;
    width: 200%;
    height: 12em;
    animation: wave 10s -3s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.wave:nth-of-type(2) {
    bottom: -1.25em;
    animation: wave 18s linear reverse infinite;
    opacity: 0.8;
}

.wave:nth-of-type(3) {
    bottom: -2.5em;
    animation: wave 20s -1s reverse infinite;
    opacity: 0.9;
}

@keyframes wave {
    2% {
        transform: translateX(1);
    }

    25% {
        transform: translateX(-25%);
    }

    50% {
        transform: translateX(-50%);
    }

    75% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(1);
    }
}
.container {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding: 0 20px;
	padding-bottom:20px;
}

.profile h2 {
	font-size: 28px;
	/* margin-top: 10px; */
	margin-bottom: 10px;
	color: #FFFFFF; 
  }

.link {
	background-color: #FFFFFF;
	padding: 15px;
	margin: 15px;
	border-radius: 100px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	text-align: left;
	width: 70%;
	height: auto;
	display: flex;
	flex-direction: row;
	align-items: center;
	text-decoration: none;
	color: #333333;
	transition: all 0.3s ease;
}

.link:hover {
	transform: scale(1.05);
	/* transform: translateY(-5px); */
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);

}

.link img {
	width: 50px;
	height: 50px;
	margin-right: 20px;
}

.link h3 {
	font-size: 24px;
	margin: 0;
	flex-grow: 1;
}

.link a {
	color: #333333;
	text-decoration: none;
}

.profile {
	display: flex;
	flex-direction: column;
	align-items: center;
	/* margin-top: 30px; */
}

.profile img {
	width: auto;
	height: 150px;
	border-radius: 12px; /* Change from 50% to give square corners, use 12px for slight rounding */
	border: 3px solid #ffffff; /* Add border with a white color */
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2); /* Optional: add a subtle shadow */
}

.profile p {
	font-size: 20px;
	margin: 0;
	color: #ffffff;
	
}

.whatsapp {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 9999;
}

.whatsapp a {
	display: block;
	width: 60px;
	height: 60px;
	background-color: #25D366;
	border-radius: 50%;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
	text-align: center;
	line-height: 60px;
	color: #FFFFFF;
	font-size: 32px;
	transition: all 0.3s ease;
}

.whatsapp a:hover {
	transform: scale(1.1);
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}

  /* CSS for blinking cursor animation */
  @keyframes blink {
    0%, 50% {
        border-right: 2px solid transparent;
    }
    51%, 100% {
        border-right: 2px solid #000; /* Adjust border color as needed */
    }
}

@media screen and (max-width: 480px) {
	.container {
		flex-direction: column;
		align-items: center;
	}
	
	.link {
		padding: 10px;
		width: 95%;
		height: auto;
		margin: 10px 0;
		flex-direction: row;
		justify-content: space-between;
		transition: all 0.3s ease;
		text-align: center;
	}
	
	.link img {
		margin-right: 0;
		margin-bottom: 0;
	}

	.link p {
		display: none;
	  }

	.link h3 {
		font-size: 20px;
		margin-left: -50px;
		flex-grow: 1;
	}
	.profile img {
		width: auto;
		height: 120px;
		border-radius: 50%;
	}
}
  /* Media queries */
  @media (max-width: 1024px) {
	.share-button {
	  top: auto;
	  bottom: 20px;
	  right: 20px;
	}
	
	.share-menu {
	  top: auto;
	  bottom: 80px;
	  right: 20px;
	}

	.profile {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
.profile img {
	width: auto;
	height: 150px;
	border-radius: 12px; /* Change from 50% to give square corners, use 12px for slight rounding */
	border: 3px solid #ffffff; /* Add border with a white color */
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2); /* Optional: add a subtle shadow */
}
	.profile h2 {
		font-size: 28px;
		margin-top: 10px;
		margin-bottom: 10px;
		color: #FFFFFF; 
	  }
	  

	h1 {
		text-align: center;
		margin-top: 10px;
		font-size: 30px;
		color: #ffffff;
		text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	}
  }
