/* 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 {
  font-family: Verdana;
  background: url(windows_xp_2.jpg) center / cover no-repeat;
  background-repeat: repeat, no-repeat;
  background-attachment: scroll, scroll;
  background-position: 0%, 0%, center;
  background-size: auto, cover;
  background-origin: padding-box, padding-box;
  background-clip: border-box, border-box;
  
}
.text-rectangle {
    width: 300px; /* Sets the width of the rectangle */
    padding: 20px; /* Adds space between the text and the border */
    border: 2px solid #333; /* Adds a solid border */
    background-color: #f0f0f0; /* Sets the background color */
    margin: 10px; /* Adds space around the rectangle itself */
    text-align: center; /* Centers the text horizontally */
}




