/* 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:#ff1493;
  color: black;
  font-family: Verdana;
  align-items: center;     /* centers top to bottom */
  min-height: 100vh;       /* make body fill screen height */
  margin: 0;
}
h1 {
  color: black;
  text-align: center;
}
p {
  color: black;
  text-align: center;
}
.text-box {
  border: 2px solid black;   /* Box border */
  padding: 15px;             /* Space inside the box */
  margin: 20px 0;            /* Space outside the box */
  border-radius: 8px;        /* Optional rounded corners */
  background-color: #f5f5f5; /* Optional background */
  max-width: 600px; 
}