/* 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: #f7f2eb; /* couleur de fond */
  color: #4b3b2a; /* couleur du texte */
  font-family: 'Georgia', serif; /* police du texte */
}

h1 {
  color: #a65e4a; /* couleur du titre */
}

.post {
  background-color: #fff4e6; /* fond des posts */
  border: 1px solid #d9b99b; /* bordure des posts */
}
