Body{ background-color:#FFAA00;}
h1{color:#2E073E;font-family: "Libre Baskerville", serif;font-size:24pt;background-image:linear-gradient(#FFFC41,#FFD9A8);text-shadow: 1px 1px 5px black;box-shadow: 7px 7px 7px black ;border-radius:20%;text-align:center;}
h2{color:#2E073E;font-family: "Libre Baskerville", serif;font-size:20pt}
p{color:#2E073E;font-family: "Libre Baskerville", serif;font-size:18pt;font-weight:normal}
#gradient {
	height: 400px;
  margin-bottom: 2em;
  background-size: 100% 100%;
	border-image: linear-gradient(#FFFC41,#FFD9A8)}


button:hover {
  background-color:#2E073E;
}
a:link {
  color: red;
}

a:visited {
  color: purple;
}
a:hover {
  color: skyblue;
}
button:active {
  background-color:black;
}

#owl {
	width: 100px;
  height: 100px;position: relative;
  border-radius: 50%;animation-name:moving-image;animation-duration: 10s;animation-iteration-count: infinite;animation-timing-function: linear;
}
@keyframes moving-image {0% {
    left: 0;     
    transform: scale(1);
  }
  25% {
    transform: scale(2);
  }
  50% {
    left: 90%; 
    transform: scale(1);
  }
  75% {
    transform: scale(2);
  }
  100% {
    left: 0; 
    transform: scale(1);
  }
}
#pause-owl {
	position: relative;
  z-index: 1;
  cursor: pointer;
}