@charset "iso-8859-1";
/* CSS Document */

body{
    background-image: url("imagenes/stardust.png");
    background-repeat: repeat;
   }

    #contenedor{
        width: 960px;
        margin: 0 auto;
        background-color:lightcyan;
        color: black;
        position: relative;
        font-family: sans-serif;
        padding:15px;
        padding-bottom:5px;
    }

            nav ul{
                list-style: none;
                display: block;
            }

            nav li{
                float: left;
                width: 50%;
                margin: 0 auto;
            }

            nav li a{
                text-decoration: none;
                color: black;
                font-weight: 400;
                hover:background
            } 
        main{
            clear:both;
            position: relative;
            height: 1100px;
        }

        h1{
            position:absolute;
            top:-10px;
            left: 8px;
            color:seagreen;
            font-size: 30px;
        }
            article{
                border-style: outset;
                border-width: 5px;
                padding: 0px 15px;
                position: absolute;
                top:50px;
                left:0;
                right:0;
                margin-left:auto;
                margin-right: auto;
                height: 200px;
                width: 900px;
                display:block;
            }
                
                article img{
                    float:left;
                    position:absolute;
                    top:15px;
                }
 
                article ul{
                    font-weight: bolder;
                    float:left;
                    position:absolute;
                    left: 220px;
                }

                article ul li {
                    color: darkgreen;
                    font-size: medium;
                    font-weight: normal;
                }

            #trabajos{
                clear: both;
                display: block;
                position: absolute;
                top:265px; 
                left: -30px;
            }
            
                #trabajos ul{
                    list-style: none;
                    display: block;
                }

                #trabajos ul li{
                    float: left;
                    margin: 5px;
                    color: darkolivegreen;
                    font-size: medium;
                    font-weight: bold;
                }
                #trabajos img:hover{
                    moz-box-shadow: 0 0 10px blue; 
                    -webkit-box-shadow: 0 0 10px blue; 
                    box-shadow: 0 0 10px blue;
                }  
        footer{
            font-size: small;
            clear: both;
            color:darkgray;}