/* 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;
}

h3 {
  color: #fa1982; /* Replace with your chosen color name or hex code */
}

h1 {
  color: #fa1982;
}

.main-notfound {
  background-color: #08031A; /* Box background color */
  border: 1px solid #fa1982;  /* Box border */
  padding: 20px;          /* Space inside the box */
  margin: 10px auto;      /* Center the box */
  width: 50%;             /* Width of the box */
  max-width: 500px;         /* Max width */
}