/*
 * Lauren Bricker
 * October 4, 2018
 *
 * Style sheet for the examples for copyright information for web programming
 */

@import url('https://fonts.googleapis.com/css?family=Catamaran');

body {
  font-family: 'Catamaran', sans-serif;

  /* This image was purchased from
     https://www.istockphoto.com/us/vector/seamless-vector-pattern-traces-of-paws-gm539440756-96166041
     and thus under this license agreement https://www.istockphoto.com/legal/license-agreement */
  background-image: url("paw.jpg"), url("paw.jpg");
  background-size: 100px 100px;
  background-repeat: repeat-y, repeat-y;
  background-position: right, left;
}

header, footer {
  background-color: #635550;
}

header {
  padding: 10px;
}

footer {
  border-radius: 5px;
  border: 1px solid black;
  padding-top: 10px;
  color: #c9c5b6;
  position: fixed;
  width: 100%;
  bottom: 0px;
}

main {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

section, footer, h4 {
  text-align: center;
}

h2, h4  {
  margin-top: 10px;
}

h4 {
  color: #cc544d;
}

section img {
  width: 200px;
}

p {
  margin-top: 5px;
}
