/* 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-image: url("IMG_0118.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;

  color: pink;
  font-family: "AvantGarde Bk BT", sans-serif;
}


.box {
  background-color: rgba(255, 255, 255, 0.8); /* soft white with transparency */
  border: 2px solid pink;                     /* pink outline */
  border-radius: 15px;                        /* rounded corners */
  padding: 20px;                              /* space inside the box */
  margin: 20px auto;                          /* space outside, centered */
  max-width: 600px;                           /* keeps it from stretching too wide */
  text-align: center;                         /* centers text */
  box-shadow: 0px 4px 10px rgba(0,0,0,0.2);   /* soft shadow */
}
