/* 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 {
  /* Colours can be specified by their actual colour names like red, blue, green and so on. But if you want some specific colours, you can use the hexcode format, which is in #000000. Values range from 00 to FF.*/
  background-color: black;
  color: white;
  font-family: Verdana;
}
h1 {
  /* This sets the text in header 1 to the middle.*/
  text-align: center;
}
/* Anything that has a dot in the beginning is a class name. Over on the HTML files, add this:
class="[.name]"
Type it EXACTLY the way it's shown on here!*/
.centered-text{
  text-align: center;
}
.review{
  text-align: start;
  width: 600px;
  margin:  0 auto;
  display: flex;
  flex-wrap: wrap;
}
p {
  /* Adjust the width value if needs be. */
  text-align: start;
  width: 600px;
  margin: 0 auto;
}