/* 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: white;
  color: black;
  font-family: Verdana;

.text-container {
  width: 80%; /* Adjust as needed */
  margin: 0 auto; /* Centers the container */
  text-align: center;
  border: 1px solid black; /* Optional border for visualization */
  padding: 10px; /* Optional padding for spacing */
}

<body>

<div class="text-container">
  <p>This is some example text. It will be centered within the container and fit within its width.</p>
</div>

</body>
</html>