.content{
    width: 60%;
    margin: 0 auto;
}

input[type=text]{
    padding: 5px 10px;
    width: 60%;
    letter-spacing: 1px;
}

input[type=submit]{
    padding: 5px 15px;
    letter-spacing: 1px;
    border: 0;
    background: gold;
    color: white;
    font-weight: bold;
    font-size: 17px;
}

input[type=submit]:hover{
    padding: 5px 15px;
    letter-spacing: 1px;
    border: 0;
    background: #00abff;
    color: black;
}

#error {
    border: 1px solid red;
    text-align: center;
    margin-top: 5em;
    background-color: #ececec;
}

h1{
    border-bottom: 1px solid gray;
}

h2{
    color: black;
}
h2 a{
    color: black;
    text-decoration: none;
}

.post{
    border: 1px solid gray;
    padding: 5px;
    border-radius: 3px;
    margin-top: 15px;
    height: 350px;
}



.post-head {
    text-align: right;
    background-color: #cecece;
    padding: 1%;

}

.post-head span{
    font-size: 14px;
    color: gray;
    letter-spacing: 1px;
    border-top: 1px solid #000;
    padding-top: 3px;
}

.post-content{
    font-size: 18px;
    color: black;
}
 
.rss_wp_img {
    float: left;
    margin-left: 20px;
    margin-right: 20px;
    border-right: 1px solid #cecece;
    padding-right: 19px;
    border-right-width: 7px;
}

#fecha {
    text-align: right;
}

/* media query */
@media (max-width: 880px){
    .content{
        width: 99%;
    }

    h1{
        border-bottom: 1px solid gray;
        font-size: 22px;
        text-align: center;
    }

    h2{
        color: black;
    }
    h2 a{
        color: black;
        text-decoration: none;
    }

    input[type=text]{
        padding: 5px 10px;
        width: 60%;
        letter-spacing: 1px;
    }

    input[type=submit]{
        padding: 5px 15px;
        letter-spacing: 1px;
        border: 0;
        background: gold;
        color: white;
        font-weight: bold;
        font-size: 17px;
    }

    .content > form:nth-child(1){
        text-align: center;
    }
    .post{
        border: 1px solid gray;
        padding: 5px;
        border-radius: 3px;
        margin-top: 15px;
        height: auto;
    }

    .post-head {
        text-align: center;
        background-color: #cecece;
        padding: 1%;

    }

    .post-head span{
        font-size: 14px;
        color: gray;
        letter-spacing: 1px;
        border-top: 1px solid #000;
        padding-top: 3px;
    }

    .post-content{
        font-size: 18px;
        color: black;
    }
     
    .rss_wp_img {
        float: none;
        max-width: 100%;
        width: 85%;
        border-right: 0;
        padding-right: 0px;
    }

}