/* Styling is more fun than I anticipated, even with headaches!
    
    Dakota Savage
     3300-04
     Unit 4
     Assignment 2

*/

h1 {
    font-size: 300%;
    margin:0;
}
h2 {
    font-size: 200%;
}
section h2::first-letter{
    font-size:300%;
    margin:0;
}
/* If I'm not mistaken, the instructions do not say to increase the font size of the first letter in the header, but your example does. */
header h2::first-letter{
    font-size:300%;
    margin:0;
}
header img{
    float:left;
}
section h2{
    margin:0;
}

header h1{
    color:darkslategrey;
    text-shadow:2px 2px black;
}
a{
    color:ivory;
    font-weight: bold;
}
/* Your instructions also said to center this, but your example did not. */
footer{
    font-size:85%;
    text-align:center;
    background:linear-gradient(45deg, #BC4476,#EDB1CA);
    color:ivory;
}
body { 
    font-family: sans-serif;
    width:800px;
    background-color:#ce8dce;
    border-style:solid;
    border-width:1px;
    border-color:black;
    box-shadow: 4px 4px black;
    padding-top:0;

}
html{
    background-color:#E7E5E7;
}
header{
    margin:0;
    border:0;
    background:linear-gradient(45deg,#EDB1CA, #BC4476);
}
/* Not too sure what using blocks instead of normal typface means for aside. */
aside{
    width:175px;
    float:left;
}
section{
    float:right; 
    width:500px;
    padding-left:100px;
}
div{
    display:inline-block;
}
aside ul li{
    list-style:none;
    background-color: #39ac5f;
    margin:3px;
    padding:4px;
    border-style:solid;
    border-color:black;
    border-width:1px;
}
