/* 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." */

body {
  background-color: pink;
  background-image: url("background.jpg");
  background-position: top;
  background-size: 100%;
  background-repeat: space;
  color: #F80091;
  font-family: monospace;
}

main {
  width: 300px;
  border: 15px purple;
  padding: 15px;
  margin: 20px;
  border-style: groove;
  content: white;
}

h2 {
  background-image: radial-gradient(#F5A6E6 30%, transparent 70%); /* inner shadow */
  border-radius:100%;
  border: 1px solid white; /* border white */
  -webkit-box-shadow: 0px 0px 5px 0px #7FC8F8; /* shadow */
  -moz-box-shadow: 0px 0px 5px 0px #7FC8F8; /* shadow */
  box-shadow: 0px 0px 5px 0px #7FC8F8; /* shadow */
  position: center;
}



/*img {
/*  width: 100%;
  height: auto;
}
