﻿body {
    font-family: Arial;
}

.izquierda {
    width: 30%
}

.centro {
    width: 40%
}

.imagen-tabla {
    width: 100%;
    max-width: 1000px;
    min-width: 375px;
    /* height: calc(100% - 160px);*/
}

.boton3 {
    background-color: orange;
    color: white;
    font-size: 16px;
    width: 150px;
    border: 0px;
    height: 30px;
    border-radius: 5px;
}

    .boton3:hover {
        background-color: orangered;
    }

@media screen and (max-width: 800px) {
    .izquierda {
        width: 0%
    }

    .centro {
        width: 100%
    }

    .imagen-tabla {
        width: 100%;
    }

    .boton3 {
        font-size: 11px;
        width: 100px;
        height: 20px;
        border-radius: 2px;
    }
}
