/* 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: url("images/background.jpg");
    background-repeat: no-repeat;   /* Stops duplication */
    background-size: cover;    /* Fills the screen */
  color: black;
  font-family: georgia;
}

/* The centered box */
.container {
  width: 800px;              /* Fixed width (very 2000s) */
  margin: 50px auto;         /* Centers horizontally */
  background: white;         /* Box color */
  padding: 20px;
  border: 3px solid black;   /* Old-school thick border */
}

.banner {
  width: 10%;      /* Makes it fill the box */
  height: auto;     /* Keeps proportions */
  display: block;   /* Removes small gap below image */
}