/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
head { font-family: Georgia ;
  
}
body { 
  background-color: pink ;
  color: pink;
  font-family: Georgia;
}
.doll {
  
  display:block;
  position:relative;
  animation: dollmove 3.5s infinite;
filter: drop-shadow(5px 10px 4px rgba(0,0,0,.2));
}

@keyframes dollmove {
  0%   {top: -15px;}
  50%  {top: 15px;}
  100% {top:-15px;}
}

body {
  background: #f7d5f7 url("/img/pexels-suju-2099737_med_light.jpg"); /*Replace with your own background*/
	background-size: cover;
	background-attachment: fixed;
  background-position:center;
	font-family: "VT-100", fixedsys, System, monospace;
	font-size: 13px;
  }
  
center {
  text-align: center;
  }
  
a {
  color: #3c5832;
  }

