#shape { 
	background: olive; 
	width: 100px;
	height: 100px;
}

}

.default {
	background-color: olive;
}

h1 {
	text-align: center;
	font-size: 75px;
	animation-duration: 6s;
	animation-name: slidein;
	animation: slidein 6s ease infinite alternate;
} 

@-webkit-keyframes slidein {
	from {
		margin-left: 5%;
		width: 300%;
	}

	to {
		margin-left: -5%;
		width: 100%
	}
}

.container {
	opacity: 1;
	-webkit-transform: scale(1.3);
	-ms-transform: scale(1.3);
	transform: scale(1);
}

#container-Monday {
	color: yellow;
}
#container-Tuesday {
	color: orange;
}
#container-Wednesday {
	color: red;
}
#container-Thursday {
	color: purple;
}
#container-Friday {
	color: hotpink;
}
#container-Saturday {
	color: lime;
}
#container-Sunday {
	color: royalblue;
	opacity: 1;
}

#wii {
	position: fixed;
	left: 0;
	top: 0;
}

body {
	width: 100vh; 
	height: 90vh;
	color: #fff;
	background: linear-gradient(-45deg, #663399, #EE7752, #E73C7E, #23A6D5, #23D5AB, #D4AF37, #FFFF00);
	background-size: 300% 300%;
	-webkit-animation: gradient 15s ease infinite;
	-moz-animation: gradient 15s ease infinite;
	animation: gradient 15s ease infinite;
}

@-webkit-keyframes gradient{
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

.mp3 {
	opacity: .5;
}










