@charset "UTF-8";
/* CSS Document */

.background {
  background-image: url('../images/background.jpg'); /* The image used */
  background-color: #000; /* Used if the image is unavailable */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
} 