/*
   New Perspectives on HTML and CSS
   Tutorial 4
   Case Problem 1

   History Style Sheet
   Author: JJ Cales Velez
   Date:   9/10/2025

   Filename:         history.css
   Supporting Files: arlogo.png, lincoln 01.png - lincoln10.png

*/

* {
margin: 0;
padding: 0;
}

header, section, nav {
    display: block;
}



header{

background-color:rgb(51,51,51);
text-align: center;
width:54em;

}

header img {

height: 4em;

}

nav{
background-color:rgb(51,51,51);
float: left;
width: 14em;
}

nav ul li{
font-family: "Century Gothic", sans-serif;
font-size: 0.7em;
list-style-type:none;
line-height:1.4em;
margin-left:1em;
margin-bottom:1.2em;
}


nav a{
text-decoration: none;
color: rgb(212,212,212)

}


nav a:hover{

color:white;

}


#speech{
background-color:rgb(212,212,212);
width: 40em;
float: left;
font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
font-size:1.0em;
margin:0.0em;
}


#speech h1{
background-color:rgb(51,51,51);
font-size:2em;
color:rgb(212,212,212);
text-align:center;
}

#speech p{
font-size: 0.9em;
margin: 1em;
}

#speech p:first-of-type::first-letter {
float: left;
font-size: 4em;
line-height: 0.7em;
padding-bottom: 0.2em;
border-right: 0.01em solid black;
border-bottom: 0.01em solid black;
}

#speech p:first-of-type::first-line {
    text-transform: uppercase;
}


#speech img {
    float: right;
    clear: right;
    height: 4em;
}


section {
    margin-left: 15em;
    background-color: rgb(51,51,51);
}