/* 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 {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Ensures the body is at least the height of the viewport */
  margin: 0; /* Remove default body margins */
}

main {
  flex: 1; /* This makes the main content grow to fill the available space */
}

footer {
  /* Add styling for your footer (background color, padding, text alignment, etc.) */
  background-color: #333;
  color: white;
  text-align: center;
  padding: 1rem 0;
}