/* 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." */

html, body {
  height: 100%; /* Ensures html and body take full viewport height */
  margin: auto 5px auto 5px;
}  

body {
  display: flex;
  flex-direction: column; /* Stacks children vertically */
  min-height: 100vh; /* Ensures the body is at least the height of the viewport */
  background-color: rgb(77, 148, 255);
  color: black;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
}

main {
  flex: 1; /* This makes the main content grow to fill the available space and pushes the footer to the bottom of the page. */
  font-size: 1.25rem;
}

h1 {
  text-align: center;
  font-size: 2.25rem;
}

.post {
  border: 2px solid black;
  border-radius: 5px;
  background-color: rgb(77, 106, 255);
}

.content {
 margin: auto 10px; 
}

a {
 color: rgb(179, 191, 255);
 font-weight: bold;
}

footer {
  text-align: center;
  padding: 1rem;
}