/* CSS Document */
#container {
  width: 90%;
  margin: 10px auto;
  padding: 1em;
  border: 2px solid black;
  border-radius: 22px;
  box-shadow: 15px 15px 5px 0 rgba(0, 0, 0, 0.7); }

header {
  border-top-right-radius: 22px;
  border-top-left-radius: 22px;
  border-bottom: solid 2px black;
  padding: 15px;
  background-color: white;
  color: black;
  text-align: center;
  font-size: 2em; }

/* Heading Styles */
h1 {
  color: black;
  text-align: center; }

h3 {
  color: black; }

/*body*/
body {
  background-color: white;
  font-family: Georgia, "Times New Roman", Times, serif; }

/*nav bar*/
nav {
  text-align: center;
  padding: 0.2%;
  border-bottom: solid 2px black;
  border-top-right-radius: 22px;
  border-top-left-radius: 22px; }

nav ul li {
  display: inline;
  list-style-type: none; }

nav li a {
  padding: 2em;
  color: navy;
  text-decoration: none; }

nav li a:hover {
  color: red;
  text-decoration: underline; }

.devildog {
  width: 150px;
  height: 150px; }

.devildog:hover {
  -ms-transform: translate(150px, 0px) scale(3, 3) rotate(360deg);
  -webkit-transform: translate(150px, 0px) scale(3, 3) rotate(360deg);
  transform: translate(150px, 0px) scale(3, 3) rotate(360deg);
  -webkit-transition: width 2s, height 2s, -webkit-transform 2s;
  -moz-transition: width 2s, height 2s, -moz-transform 2s;
  -o-transition: width 2s, height 2s, -0-transform 2s;
  transition: width 2s, height 2s, transform 2s; }

/*paragraph*/
P {
  text-indent: 3em;
  line-height: 1.5em; }

.img1 {
  width: 80%; }

.img2 {
  width: 50%; }

/*footer*/
footer {
  padding: 0.5%;
  background-color: white;
  color: black;
  clear: both;
  border-top: solid 2px black;
  text-align: center;
  border-bottom-right-radius: 22px;
  border-bottom-left-radius: 22px; }

/*# sourceMappingURL=transformation.css.map */
