/* 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-image: url("pooltile.png");
}

header {
  background-color: powderblue;
  padding: 10px;
  text-align: center;
  font-size: 30px;
  font-family: Georgia;
  color: teal;
}
img {
  float: left
}
/* Create three equal columns that float next to each other */
.column {
  float: right;
  width: 50%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
h1{
  text-align:center; 
}

p {
  color: teal;
  text-align:center;
  font-size: 30px;
  font-family: Monospace;
  border: 2px solid teal;
  border-radius: 6px;
  background-color: wheat; 
  margin: 100px 100px 100px
}