/*Juan Atuesta
Thursday Class for Chapter 4 CSS coding on the HTML page.*/


body, header, nav, footer{
    margin: 0;
    padding: 0;
    border: 0;
}

html{
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 100%;
}

/* This is for the hero image to fit between the header and body website*/
.baby-hawk {
    width: 100%;
}
  /*This is for setting up the colors of the body background and fixing around the header*/
        body{
            background-color:chocolate;
        }

        nav{
            float: right;
            margin: 5 em 3 em 0 0;
            width: 65%;
        }

        nav li{
            display: inline-block;
            font-size: 1.75em;
        }

        nav li a{
            display: block;
            color: #fff;
            text-align: center;
            padding: 0.5em 1em;
            text-decoration: none;
        }

        img{
            max-width: 100%;
            display: block;
        }

        header{
            background-color: brown;
            float: left;
            width: 28%;
        }

        main{
            clear: left;
            background-color: lightsalmon;
            padding: 2%;
            font-size: 1.25em;
        }

        h1{
            text-align: center;
        }

        header{
            width: 25%;
            float: left;
        }

        ul{
            list-style: square;
        }

    /*This is for the footer editing for colors and center below the site*/
        footer p{
            font-size: 0.75em;
            text-align: center;
            color: #fff;
            padding: 0 1em;
        }

        footer p a{
            color: #fff;
            text-decoration: none;
        }

        #Racoons, #Tortoise{
            width: 29%;
            float: center;
            padding: 0 20em;
        }

        #contact{
            text-align: center;
        }

        #contact a{
            color: #666600;
            text-decoration: none;
        }

        h2{
            text-align: center;
        }

        .action{
            font-size: 1.35em;
            color: #666600;
            font-weight: bold;
        }