/* CSS files add styling rules to your content */
/* 
:root {
  --background-page-color: #FFF8FD;
} */

body {
  font-family: "Open Sans", sans-serif;
  margin: 3em;
  background-color: #FFF8FD;
  color: #313131;
}

h1 {
  font-size: 250%;
  font-style: italic;
  font-family: "Lato", sans-serif;
  color: #E069C3;
}

h2 {
  font-size: 150%;
}

p {
  font-size: 100%;
}

a {
  text-decoration: none;
}

footer {
  padding: 20px 0px 20px 0px;
}

/* Graphics */

#heart {
  position: relative;
  top: 20px;
  margin: auto;
  transform: rotate(45deg);
  background-color: pink;
  height: 40px;
  width: 45px;
  animation-name: rainbow;
  animation-duration: 5s;
  animation-iteration-count: infinite;
}

@keyframes rainbow {
  0% {
    background-color: pink;
  }
  25% {
    background-color: orange;
  }
  50% {
    background-color: red;
  }
  75% {
    background-color: lightblue;
  }
  100% {
    background-color: pink;
  }
}

#heart::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  background-color: pink;
  transform: rotate(90deg);
  height: 40px;
  width: 50px;
  top: -25px;
  left: 0px;
  animation-name: rainbow;
  animation-duration: 5s;
  animation-iteration-count: infinite;
}

#heart::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background-color: pink;
  height: 40px;
  width: 50px;
  top: 0px;
  left: -25px;
  animation-name: rainbow;
  animation-duration: 5s;
  animation-iteration-count: infinite;
}

#crescent {
  position: relative;
  margin: auto;
  height: 75px;
  width: 75px;
  background-color: lightblue;
  border-radius: 50%;
  animation-name: colorful;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

@keyframes colorful {
  0% {
    background-color: lightblue;
    left: -50px;
  }
  
  50% {
    background-color: gray;
    left: 50px;
  }
  100% {
    background-color: lightblue;
    left: -50px;
  }
}

/* #crescent::before {
  content: "";
  background-color: linear-gradient(90deg, red, yellow);
  height: 80px;
  width: 80px;
} */

#crescent::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background-color: #FFF8FD;
  height: 60px;
  width: 60px;
}

#snowman {
  position: relative;
  margin: auto;
  background-color: lightgray;
  border-radius: 50%;
  height: 80px;
  width: 80px;
}

#snowman::before {
  content: "";
  position: absolute;
  background-color: lightgray;
  border-radius: 50%;
  height: 100px;
  width: 100px;
  top: 50px;
  left: -7px;
}

#snowman::after {
  content: "";
  position: absolute;
  background-color: lightgray;
  border-radius: 50%;
  height: 140px;
  width: 140px;
  top: 100px;
  left: -26px;
}

#snow-eyes {
  position: relative;
  margin: auto;
  background-color: gray;
  border-radius: 50%;
  height: 10px;
  width: 10px;
  bottom: 50px;
}

#snow-eyes::before {
  content: "";
  position: absolute;
  background-color: gray;
  border-radius: 50%;
  height: 10px;
  width: 10px;
  left: -20px;
}

#snow-nose {
  position: relative;
  margin: auto;
  border-color: transparent orange;
  border-width: 5px 20px 10px 0px;
  border-style: solid;
  height: 0px;
  width: 0px;
  bottom: 50px;
  left: -20px;
}

#gradient {
/*   position: relative; */
  margin: auto;
  height: 75px;
  width: 75px;
  border-radius: 30%;
  background: linear-gradient(45deg, darkred, pink, orange, yellow, lightblue, purple);
  box-shadow: 10px 10px 0px 0px gray, 10px 0px 0px 40px lightblue;
}

