.bg-monday{
	background-color: black;
}
.bg-tuesday{
	background-color:#30174f;
}
.bg-wednesday{
	background-color: gray;
}
.bg-thursday{
	background-color:#30174f;
}
.bg-friday{
	background-color: #05e1ec;
}
.bg-saturday{
	background-color:  #007cff;
}
.bg-sunday{
	background-color: #e5ec03;
}
.color-monday{
	color: white;
}
.color-tuesday{
	color:black;
}
.color-wednesday{
	color:blue;
}
.color-thursday{
	color: black;
}
.color-friday{
	color:  #01486a;
}
.color-saturday{
	color:  #1c1b20;
}
.color-sunday{
	color: #c66565;
}

.question{
	font-size: 9vw;
	margin-bottom: 0;
	text-align: center;
	margin: 0;
	font-weight: normal;

}
.answer{
	font-size: 9vw;
	margin-bottom: 0;
	text-align: center;
	margin: 0;
}
.monday{
	text-align: center;
}
.mondayimg{
width: 50vw;
max-width: 400px;
}
.tuesday{
	text-align: left;
}
.tuesdayimg{
	left: 200px;
	width: 50vw;
	max-width: 400px;
	position: relative;
	animation: line 4s infinite;
}
@keyframes line {
  from {left: 15%;}
  to {left: calc(100% - 50vw);}
}
.wednesday{
	text-align: center;
}
.wednesdayimg{
	width: 50vw;
	max-width: 400px;
}
.thursday{
	text-align: center;
}
.thursdayimg{
	width: 50vw;
	max-width: 600px;
	position: relative;
	animation: shake 5s infinite;
}
@keyframes shake{
  2%, 18% {transform: translate3d(-0.5vw, 0, 0);}
	4%, 16% {transform: translate3d(1vw, 0, 0);}
	6%, 10%, 14% {transform: translate3d(-2vw, 0, 0);}
	8%, 12% {transform: translate3d(2vw, 0, 0);}
	19%, 100% {transform: translate3d(0vw, 0, 0);}
  }
  
.friday{
	text-align: center;
}
.fridayimg{
	width: 50vw;
	max-width: 400px;
	animation: rotate 5s infinite;
}
@keyframes rotate{
  from {transform: rotate(0deg);}
  to {transform: rotate(360deg);}
  }
.saturday{
	text-align: center;
}
.saturdayimg{
	width: 50vw;
	max-width: 400px;
	animation: moreshake 5s infinite;
}
@keyframes moreshake{
 	2%, 18% {transform: translate3d(-1vw, 0, 0);}
	4%, 16% {transform: translate3d(1.5vw, 0, 0);}
	6%, 10%, 14% {transform: translate3d(-2.5vw, 0, 0);}
	8%, 12% {transform: translate3d(2.5vw, 0, 0);}
	19%, 100% {transform: translate3d(0vw, 0, 0);}
}
.sunday{
	text-align: center;
}
.sundayimg{
	width: 50vw;
	max-width: 400px;
}
.footer{
  font-size: 18px;
  text-align: center;
  }
.link{
  font-size: 18px;
  text-decoration: none;
/*  color: #01486a;*/
  font-weight: bolder;  
  text-align: center;
  }
@media screen and (max-width: 600px){
.question{
	font-size: 7vw;
}
.answer{
	font-size: 7vw;
}
.footer{
  font-size: 4.5vw;
 }
.link{
  font-size: 4.5vw;
 }
 }
 @media only screen and (min-width: 600px) and (max-width: 900px) {
.question{
	font-size: 8vw;
}
.answer{
	font-size: 8vw;
}
.footer{
  font-size: 4.5vw;
 }
.link{
  font-size: 4.5vw;
 }
 