body{
	font-family: 'Open Sans';
	background: #ed9393;
}

html, body {
  height: 100%;
}

body {
  display: grid;
  align-items: center;
  justify-items: center;
}

h1{
	padding-top: 30px;
	font-size: 50px;
	color: #fff;
	text-shadow: 2px 2px 2px #c96969;
	font-family: 'Courgette';
}

.quotes{
	padding-top: 30px;
	color: #4c4d4c;
	line-height: 1.5;
	font-style: italic;
	padding: 30px 20px;
}

.fade-in {
  animation: fadeIn ease 3s;
  -webkit-animation: fadeIn ease 3s;
  -moz-animation: fadeIn ease 3s;
  -o-animation: fadeIn ease 3s;
  -ms-animation: fadeIn ease 3s;
	text-align: center;
}

.heart{
  -webkit-animation: fadeinout 4s linear infinite;
  animation: fadeinout 4s linear infinite;
}

@-webkit-keyframes fadeinout {
  0%,100% { opacity: 0; }
  50% { opacity: 1; }
}

@keyframes fadeinout {
  0%,100% { opacity: 0; }
  50% { opacity: 1; }
}

.heart {
  background-color: red;
  display: inline-block;
  height: 50px;
  margin: 0 10px;
  position: relative;
  top: 0;
  transform: rotate(-45deg);
  width: 50px;
}

.heart:before,
.heart:after {
  content: "";
  background-color: red;
  border-radius: 50%;
  height: 50px;
  position: absolute;
  width: 50px;
}

.heart:before {
  top: -25px;
  left: 0;
}

.heart:after {
  left: 25px;
  top: 0;
}

@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}

@-moz-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}

@-webkit-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}

@-o-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}

@-ms-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}

body.afternoon{
	background: #edcc93;
}

body.afternoon h1{
	text-shadow: 2px 2px 2px #c9b769;
}

body.night{
	background: #939fed;
}

body.night h1{
	text-shadow: 2px 2px 2px #6971c9;
}
