/* 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."
   
   miamibackground.jpg
   black-glitter.gif
   
   1440 × 1798*/

body {
  background-color: #FF4DD5;
  color: #6495ED;
  background-attachment: fixed;
  
  text-shadow:
  1px 1px 2px red,
  0 0 1em blue,
  0 0 0.2em blue;
  
  font-family: cursive;
  font-size: 40px;
  background-image: url("miamibackground.jpg"), url("black-glitter.gif"); 
  background-repeat: repeat;
  background-size: contain;
  background-position: bottom;
  background-blend-mode: overlay;
}


body{
  height: 100vh;
  width: 100%
}