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



  .one{
      background-color: HotPink;
      border: medium inset;
      padding: 50px 50px 50px 50px;
      width: 500px;
      margin: auto;
      box-sizing: border-box;
    }
  
  .two{
      background-color: LightPink;
      border: medium inset;
      padding: 20px 20px 20px 20px;
      width: 200px;
      box-sizing: border-box;
    }

    /* border: 5px solid purple */

body {

  background: url("pexels-thirdman.jpg") center 300px;
  margin: 100px;
  border: 100px;
  padding: 100px;
  
  background-clip: padding-box;
  
  /*
Order:
    background-color: linen;
    background-image: url("pexels-padrinan-1.jpg");
    background-position: left center;
    background-size: ;
    background-repeat: repeat-y;
    background-origin: ;
    background-clip (painting area of background ; 
    background-attachment: scroll;
 */
  color: black;
  font-family: Lucida, Monospace;

}



/*Link styling*/
a:link{
  color:HotPink; 
}
a:visited{
  color:purple;
}





