/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
 color: black; 
 font-family: Helvetica;
}
@keyframes Hello {
from {color: black;}
to {color: white;}
}

@keyframes Hello2 {
from {color: white;}
to {color: black;}
}

.Title_me {
color: white;
background-color: black;
animation-name: Hello;
animation-duration: 1s;
font-family: Helvetica;
font-weight: bold;
}

.Mn_desc {
color: black;
font-family: Helvetica;
font-weight: bold;
}

@keyframes Button_test {
	0% {background-color: black; left: 800px;}
	50% {background-color: gray; left: 400px}
	100% {background-color: white; left: 0px;}
}

.Button1 {
	background-color: white;
	font-size: 16px;
	font-family: Helvetica;
	font-weight: bold;
	color: black;
	border: 4px solid #000000; /* Black */
	margin: 4px 2px;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	text-align: center;
	width: 150px;
	height: 20px;
	position: relative;
	animation-name: Button_test;
	animation-duration: 3s;
}

.Point {
	background-image: url('../IMAGES/CONSTRUCTION.png');
	background-position-y: 90px;
	background-size: 1300px;
}
