html {
	/* Ensure the html element always takes up the full height of the browser window */
	min-height: 100%;
	/* The Magic */
	background-size: cover;
}
@-webkit-keyframes glowing {
	0% {
		border: yellow;
		-webkit-box-shadow: 0 0 3px yellow;
	}
	50% {
		border: orange;
		-webkit-box-shadow: 0 0 40px orange;
	}
	100% {
		border: pink;
		-webkit-box-shadow: 0 0 3px pink;
	}
}
@-moz-keyframes glowing {
	0% {
		border: yellow;
		-moz-box-shadow: 0 0 3px yellow;
	}
	50% {
		border: orange;
		-moz-box-shadow: 0 0 40px orange;
	}
	100% {
		border: pink;
		-moz-box-shadow: 0 0 3px yellow;
	}
}
@-o-keyframes glowing {
	0% {
		border: yellow;
		box-shadow: 0 0 3px yellow;
	}
	50% {
		border: orange;
		box-shadow: 0 0 40px orange;
	}
	100% {
		border: pink;
		box-shadow: 0 0 3px pink;
	}
}
@keyframes glowing {
	0% {
		border: gold;
		box-shadow: 0 0 30px darkred;
	}
	25% {
		border: yellow;
		box-shadow: 0 0 40px red;
	}
	50% {
		border: orange;
		box-shadow: 0 0 30px crimson;
	}
	75% {
		border: deeppink;
		box-shadow: 0 0 40px firebrick;
	}
	100% {
		border: red;
		box-shadow: 0 0 30px salmon;
	}
}
.calendar {
	-webkit-animation: glowing 500ms infinite;
	-moz-animation: glowing 500ms infinite;
	-o-animation: glowing 500ms infinite;
	animation: glowing 500ms infinite;
	background: url('../pics/calendar.jpg') no-repeat center center;
	color: black;
	font-size: 23px;
	font-weight: bold;
	font-style: italic;
	padding: 0px 0px;
	border-radius: 50px;
	width: 190px;
	height: 100px;
}
.email {
	background: url('../pics/email.png') no-repeat center center;
	border: 4px solid midnightblue;
	color: black;
	font-family: Georgia;
	font-size: 30px;
	font-weight: bold;
	font-style: italic;
    text-align: bottom;
	padding: 0px 0px;
	border-radius: 20px;
	width: 120px;
	height: 120px;
}
.email:hover {
	background-color: firebrick;
	color: white;
	border: 4px solid cornsilk;
	transition: all .9s;
}
.wnote {
	background-color: almondwhite;
	border: 4px solid midnightblue;
	color: black;
	font-size: 20px;
	font-weight: bold;
	font-style: italic;
	font-family: Georgia;
	padding: 2px 2px;
	border-radius: 20px;
	width: auto;
	height: auto;
}
</body>
