
/** {
border: solid red; 
}*/

body {
    font-family: 'Roboto', sans-serif, Arial, Helvetica, sans-serif;
    background-color: rgb(230, 230, 230);
}

.imagen1 {
    text-align: justify;
}

.imagen1 img {
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    border-radius: 1%;
}

.imagen2 {
    text-align: justify;
}

.imagen2 img {
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    border-radius: 1%;
}
@media (max-width: 768px) {
    .imagen2 {
        display: none;
    }
}

.description {
    text-align: center;
}

.contenido {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
}

.articles-area {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 600px;
    margin-left: 10px;
    margin-right: 10px;
}

form {
    display: flex;
    flex-direction: column;
    border-radius: 50%;
}

.titulo {
    font-family: Arial, sans-serif;
    font-size: 36px;
    text-align: center;
    color: #333;
    line-height: 1.5;
    margin-bottom: 10px;
}

input, textarea, select{
    margin-bottom: 10px;
}

.limpia {
    color: black;
    background-color:  white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    margin-bottom: 10px;
}

button {
    color: white;
    background-color:  rgb(0, 0, 125);
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
}

table, td, th{
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #000;
    padding: 5px;
    border-collapse: collapse;
    font-size: 15px;

}

.modificar{
    background-color: rgb(230, 230, 230);
    color: green;
}

.eliminar{
    background-color: rgb(230, 230, 230);
    color: red;
}

tbody tr:nth-child(odd){
    color: black;
    background-color: rgb(255, 255, 255);
}

tbody tr:nth-child(even) {
    color: black;
    background-color: rgb(200, 200, 200);
}