/*estilos generales*/

*{
    margin: 0px;
    padding: 0px;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
}

body{
    background-color: #f2f2f2;

}

/*estilos a la cabecera*/

header{
    width: 1212px;
    height: 100px;
    background-color: #23282B;
    margin: 0 auto;
}

#logotipo img{
    display: block;
    width: 80px;
    float: left;
    margin-top: 10px;
}

#logotipo{
    width: 60%;
    height: 100px;
    margin: 0 auto;
    padding-top: 10px;
}

#logotipo h1{
    display: block;
    float: left;
    margin-top: 25px;
    margin-left: 20px;
    letter-spacing: 2px;
    font-weight: lighter;
    color: #42a079;
}


/*estilos contenido central*/

#content{
    width: 1232px;
    min-height: 930px;
    margin: 0 auto;
    margin-bottom: 30px;
    margin-top: 30px;
}

.box{
    background: white;    
    width: 95%;
    min-height: 930px;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin: 0 auto;
}

.box form {
    width: 50%;
}

.box form input,
.box form label{
    display: block;
    padding: 5px;
    padding-left: 0px;
}

.box form input[type="text"],
.box form textarea,
.box form select {
    width: 100%;
    margin-bottom: 10px;
}

.box form select {
    width: 100px;
    padding: 5px;
}

.box form input[type="submit"],
.box form input[type="button"],
.box form button{
    padding: 10px;
    margin-top: 5px;
    background: #42a079;
    color: white;
    border: 1px solid black;
    transition: 300ms all;
}

.rojo{
    color: red;
}

.message{
    padding: 20px;
    color: white;
    background: #42a079;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    margin-bottom: 10px;
}

.box form input[type="submit"]:hover,
.box form input[type="button"]:hover,
.box form button:hover{
    cursor: pointer;
    background: #1f4a38;
    transition: 300ms all;
}



.title{
    color: rgba(124, 119, 119, 0.637);
    letter-spacing: 1px;
    font-size: 30px;
}

p{
    margin-top: 5px;
    margin-bottom: 5px;
}

.box p, .box h2, .box h3, .box ul{
    margin-top: 5px;
    margin-bottom: 5px;
}

.box ol, .box ul{
    margin-left: 20px;
    margin-bottom: 10px;
}

.clearfix{
    clear: both;
    float: none;
}

.article-item{
    margin-bottom: 20px;
    margin-top: 20px;
    border-bottom: 1px solid #eee;
    padding: 15px;
}

.article-item .image{
    width: 200px;
    height: 200px;
    float: left;
    overflow: hidden;
    clear: both;
}

.article-item .image img{
    height: 200px;
}

.article-item .data{
    float: left;
    padding-left: 15px;
    padding-top: 0px;
}

.article-item .data h2{
    display: block;
    font-size: 30px;
    color: #333;
    margin-bottom: 10px;
}

.article-item span.date{
    display: block;
    font-size: 15px;
    color: gray;
    margin-bottom: 10px;
}

.btn-container{
    display: flex;
    justify-content: space-between;
}

.btn{
    padding: 10px;
    color: white;
    border: 1px solid black;
    display: block;
    margin: 20px;
    width: 100px;
    text-align: center;
} 

.btn-link{
    background: rgb(27, 49, 112);
}

.btn-detail{
    background: rgb(27, 49, 112);
} 

.btn-edit{
    background: rgb(2, 129, 103);
} 

.btn-delete{
    background: rgb(203, 92, 92);
} 

footer{
    width: 1250px;
    background-color: #1b1e1f;
    border: 1px solid #333335;
    color: #d1d4d6;    
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    box-shadow: 0px 0px 20px gray;
    margin: 0 auto;
}

