/* ENTIRE BODY */
	body {margin: 0; padding: 0; background-color: #F0F5F8; overflow-x: hidden; /* Prevent horizontal scrollbar */}
	body h1 {font-size: 2.15vw; margin-top: 0; margin-bottom: 0;}
	body h2 {font-size: 2vw; margin-top: 0; margin-bottom: 0;}
	body h3 {font-size: 1.75vw; margin-top: 0; margin-bottom: 0;}
	body p {font-size: 1.2vw; margin-top: 0; margin-bottom: 0;}


	

/* ANIMATED LINKS WHITE */
	.animatedLink a {
		position: relative;
		font-family: Times New Roman; 
		color: white; 
		text-decoration: none; 
		font-size: 1.5rem;}
	
	.animatedLink a::after {
		content: "";
    	position: absolute;
    	left: 0;
    	right: 0;
    	bottom: 0px;
    	height: 1.5px;
    	background: white;
    	transform: scaleX(0);
    	transform-origin: center;
    	transition: transform 0.3s ease;}

	.animatedLink a:hover::after {
		transform: scaleX(1);}

/* ANIMATED LINKS BLACK */

    .animatedLinkBlack a {
		position: relative; 
		font-family: Times New Roman; 
		color: black; 
		text-decoration: none; 
		font-size: 1.5rem;}

	.animatedLinkBlack a::after {
		content: "";
    	position: absolute;
    	left: 0;
    	right: 0;
    	bottom: 0px;
    	height: 1.5px;
    	background: black;
    	transform: scaleX(0);
    	transform-origin: center;
    	transition: transform 0.3s ease;}

	.animatedLinkBlack a:hover::after {
		transform: scaleX(1);}