﻿/*
   New Perspectives on HTML
   Tutorial 3
   Case Problem 1

   ICI Layout Styles
   Author: Sela Dawes
   Date:   3/1/2014

   Filename:         c_layout.css
   Supporting Files: none

*/

/* Layout styles */



body {
   margin: 0px auto;
   padding: 0px;
   width: 98%;
   max-width: 800px;
   min-width: 250px;
   background-color:#000000;
   color: white;
   font-family:Century Gothic, sans-serif;
}

header, footer {
   margin: 0px auto;
}

article img {
   float: right;
   margin: 15px 0px 15px 15px;
}

header h1{

color: yellow;

font-family:Courier New, Courier, monospace;

font-size:28px;

letter-spacing: 20px;

text-align:center;


}


article h2{


font-size: 24px;

letter-spacing:5px;

font-weight: normal;

text-align:justify;


}

strong{

color:yellow;

font-weight:normal;

}


footer{

text-align:center;

}

img [usemap]{

border-width:0px;

}

</body>