/* 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 {
  margin: auto;
  background-color: #CCFF00;
  color: #F2F527;
  font-family:'Brush Script MT', cursive;
  text-shadow: 5px 5px 5px #000000;   
  font-size: 30px;
  background-image: url(https://i.pinimg.com/originals/ef/ac/46/efac462260b2aa2068474df1d00fcd32.gif);
  background-repeat: repeat;       /* Tiles the image */
  background-position: top left;   /* Optional: where the first tile starts */
  display: flex; 
  justify-content: center;
  align-items: center;

  
}
.content {
  margin: auto;
  background-image: url(https://i.pinimg.com/1200x/ff/19/3b/ff193b1601b323ac1a1ffff669333832.jpg);
  display: inline-block;        
  border-radius: 8px;
  align-items: center;
  width: 40%;
  margin-left: auto;
  margin-right: auto;
}