/* 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("cloudsbckgrnd.gif"); /* Specify the image file path/URL */
            background-repeat: no-repeat; /* Prevents the image from tiling */
            background-size: cover; /* Scales the image to cover the entire viewport */
            background-attachment: fixed; /* Keeps the background fixed during scroll */
            background-color: #cccccc; /* Fallback color if the image doesn't load */
        }
  .center-text {
    text-align: center;
  }
  .center-block {
    margin: 0 auto; /* Sets top/bottom margin to 0, left/right to auto */
    width: 50%;     /* Defines a width for the block */
  }
        img {
            filter: drop-shadow(5px 5px 5px #222);
        }
body {
  font-family: "Comic Sans MS";
}