
body {    
    background-color:#67b8ee;
    width: 960px;
    margin: 20px;
    padding: 5px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

h1, h2, h3 {
    font-family: 'Lobster', cursive; /* From Google Fonts */
    text-align: center; 
    text-shadow: 1px 1px white;
  }

img {
    padding: 10px; 
    background-color: #1928fc; 
    border: 1px solid #7eb2f5;
    margin: 10px;
    border-top-left-radius: 1em 1em; /* rounded corner! */
    border-bottom-right-radius: 1em 1em; /* another rounded corner! */
    border-top-right-radius: 1em 1em;
    border-bottom-left-radius: 1em 1em; 
    box-shadow: 10px 5px 5px black;
}

h1 {
    font-size: 32pt;
    
}

h4 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
}

.background-pic {
    background-image: url('images/mountains-dog-landscape-alaskan-malamute-wallpaper.jpg');   
}

/* float classes */
.floatLeft{
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}

.floatRight{
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
}

/* clear the float class */
.clearFloat{
    clear: both;
}

/* clearfix hack */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
  }

  .centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
}