/* 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("kineticbg.png"); /* Path to your image file */
  background-color: #263990;
  color: white;
  font-family: Montserrat;
  text-align: center;
  line-height:1.125;
}

h1 {
  font-size: 72px;
  font-family: Montserrat;
  text-align: center;
  text-shadow: 7px 7px #00000080;
}

img {
  max-width: 100%; /* Image will not exceed the width of its container */
  height: auto;    /* Height adjusts automatically to maintain aspect ratio */
}