body {
  text-align: center;
  color: purple
  }
  
.p1 {
  
  font-family: "Lucida Handwriting";
  color: rgb(158, 219, 210);
}

.my-box {
    width: 200px; /* Set the width of the box */
    height: 100px; /* Set the height of the box */
    background-color: lightblue; /* Add a background color */
    border: 2px solid blue; /* Add a border */
    padding: 15px; /* Add space between content and border */
    margin: 20px; /* Add space around the box */
    border-radius: 8px; /* Optional: Add rounded corners */
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3); /* Optional: Add a shadow */
}