a.abs:link {
	background-color: #e1ffdd;
	font-weight: bold;
	font-size: 130%;
	color: red;
	text-decoration: none
	}
a.abs:visited {
	font-weight: bold;
	font-size: 110%;
	color: #1bb7ea;
	text-decoration: none
	}
a.abs:hover {
	background-color: white;
	font-size: 140%;
	font-weight: bold;
	color: #16734f;
	text-decoration:underline
	}
h2.absh {
    display: block;
    font-size: 1.5em;
    margin-top: 0.83em;
    margin-bottom: 0.83em;
    margin-left: 0;
    margin-right: 0;
    color: #e1ffdd;
    font-weight: bold;
}

button.absStyle:hover {
   background-color: red;
   color: blue;
   }
.blink_text
{
    animation:2s blinker linear infinite;
    -webkit-animation:2s blinker linear infinite;
    -moz-animation:2s blinker linear infinite;
    color: black;
    font-weight: bold;
    font-size: 300%;
}

@-moz-keyframes blinker
{  
    40% { opacity: 1.0; }
    60% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@-webkit-keyframes blinker
{  
    40% { opacity: 1.0; }
    60% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@keyframes blinker
{  
    40% { opacity: 1.0; }
    60% { opacity: 0.0; }
    100% { opacity: 1.0; }
 }
.image-text-container {
    position: relative;
    display: inline-block;
}
.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
