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

  body {
  background-image: url("https://i.pinimg.com/736x/79/96/1a/79961a44d21b09c0bf9350d583cbd36f.jpg");

}



/*workin on it box*/
.myDiv {
  border: 5px outset fuchsia;
  background-color: lightblue;
  text-align: center;
   margin: 100px 100px 150px 80px;
}

/*All paragraph text*/
p {
 font-family: "ms ui gothic", Tahoma, sans-serif;
  color: white;
  margin: 30px;
  text-align: center;
}


h1 {
 background-image: url("https://i.pinimg.com/736x/db/32/0b/db320b492e793b59f922fdf2a464347a.jpg");
  color: #6e3434;
  text-shadow: 2px 2px 5px #242c4a;
}
  
  
  /*Introbox*/
#Div2 {
  border: 5px outset fuchsia;
  text-align: center;
   margin: 100px 100px 150px 80px;
   padding: 25px;
   width: 100%; 
  max-width: 500px;
}
  