body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    overflow-x: hidden;

}
.encabezado{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
a{
    background-color: #7a0000;
    color: #f4f4f4;
    text-decoration: none;
    padding-top: 6px;
    padding-left: 9px;
    padding-right: 9px;
    border-radius: 9px;
    height: 40px;
    margin-right: 11%;
}
.divider {
    all: unset;
    display: block;
    width: calc(100% - 150px);
    border: none;
    border-top: 2px solid #000000;
    margin: 8px 0 8px 0;
    margin-right: 0;
}

header {
    margin-top: 2%;
    margin-left: 10%;
}

.Docentes {
    display: flex;
    justify-content: left;
    margin-top: 25px;
    margin-left: 10%;
}

.Docentes tr th img {
    width: 200px;
    height: 200px;
    margin: 10px;
    border-radius: 500px;
}

.datos {
    width: 135vh;
    padding-left: 25px;
    background-color: rgba(236, 236, 236, 0.525);
    border-radius: 25px;
}
.datos h5{
    font-weight: bold;
}
table {
    border-spacing: 0 12px;
    border-collapse: separate;
}

@media (max-width: 992px) {
    /* Encabezado */
    .encabezado {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .encabezado h2 {
        font-size: 22px;
    }

    .encabezado a {
        margin: 0;
        height: auto;
        padding: 8px 14px;
    }

    .divider {
        width: 80%;
        margin: 10px auto;
    }

    header {
        margin: 20px 0;
    }

    /* Tabla de docentes */
    .Docentes {
        flex-direction: column;
        margin: 15px auto;
        width: 90%;
    }

    .Docentes tr {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 25px;
    }

    .Docentes tr th img {
        width: 150px;
        height: 150px;
    }

    .datos {
        width: 100%;
        margin-top: 10px;
        padding: 15px;
        text-align: center;
    }

    .datos h5 {
        font-size: 15px;
    }

    .datos h6 {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    /* Header */
    .encabezado h2 {
        font-size: 20px;
    }

    .encabezado a {
        font-size: 14px;
        padding: 6px 12px;
    }

    /* Docentes */
    .Docentes tr th img {
        width: 120px;
        height: 120px;
    }

    .datos {
        padding: 12px;
    }

    .datos h5 {
        font-size: 14px;
    }

    .datos h6 {
        font-size: 13px;
    }
}
