
#titulo_seccion {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#titulo_seccion a {
    color: white;
    font-size: 2em;
    text-align: center;
    min-width: 375px;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: #7bb0af; /* Color inicial */
    padding: 12px 25px;
    border: 1px solid transparent; /* Borde inicial */
    border-radius: 5px;
    -webkit-border-radius: 5px;
    text-decoration: none;
    transition: background-color 500ms ease-in-out, color 200ms ease-in-out, box-shadow 200ms ease-in-out, border 500ms ease-in-out;
}

#titulo_seccion a:hover {
    color: #7bb0af; /* Color al pasar el ratón */
    background-color: #fff; /* Color al pasar el ratón */
    border: 1px solid #7bb0af; /* Borde al pasar el ratón */
    font-weight: bold;
}
