body {
  background: green;
}
.banner {
  background-image: url("binedit.png");  /*Sets the background of every elements box model in the div tag ".banner" to the image named binedit.png*/
  text-align: center;
  padding-bottom: 100px;
  font-size: 20px;
}
h1 {
  font-size: 50px;
  color: yellow;
  text-align: center;
  padding-top: 100px;
}
h2 {
  color: yellow;
  font-size: 30px;
}
h3 {
  padding-top: 0px;
  text-align: center;
  color: gold;
}
p {
  color: gold;
  font-size: 25px;
}
ul {
  color: gold;
  font-size: 20px;
}
a {
  color: black;
  transition-property: color; /*Decides that the anchor element is going to transition from one colour to another*/
  transition-duration: 0.5s; /*How long it takes for the anchor elements to transition from one colour to another*/
}
a:hover {
  color: yellow; /*When you hover your cursor over a anchor element, the colour of the element will change to yellow*/
}