/* 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: #ffd6e8 ;
  color: #F49ac2 ;
  font-family: "comic sans MS" , cursive;
  text-align: center;
  padding: 50px
}
note {
  width: 600px;
  margin: 0 auto;
  background-color:#fff;
  border: 10px solid #f6b6cf;
  border-radius: 40px;
  box-shadow:0 0 20px rgba(255, 182, 193, 0.5);
  padding: 60px ; 
  position: relative;
}
note :before {
 content: "" ; 
position: absolute;
top: -20px ; 
left: -20px ; 
right: -20px ; 
bottom: -20px ; 
border: 6px dashed #f2a1c2;
border-radius: 50px ;
}
h1 { 

  color: #f49ac2;
  font-size: 40px ; 
  font-weight : normal;
}
.note {
  width: 700px;
  height: 400px;
  margin: 0 auto;
  background: url('3EF8714A-E88E-46DA-8B5C-305C47031B26.jpeg') no-repeat center/cover;
  position: relative;
  font-family: 'Brush Script MT', cursive;
  color: #f49ac2;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

