
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, h1, h2, h4, h4, h5 {
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif; 
}
body, html {
    height: 100%;
    background: #98DF92;
}

.container-portada {
    width: 100%;
    height: 30%;
    position: relative;
    background-image: url(/public/images/edificio.jpg);
    background-size: 100%;
    animation: movimiento 20s infinite linear alternate;
}

@keyframes movimiento {
    from {
        background-position: bottom left;
    }

    to {
        background-position: top right;
    }
}

.capa-gradient {
    width: 100%;
    height: 100%;
    position: absolute;
    background: -webkit-linear-gradient(left, black, #0672d0);
    opacity: 0.5;
}

table.tbl_servicios{
    margin-left: auto;
    margin-right: auto;
}
td.icono {
    background-position: center;
    width: 128px;
    height: 128px;
    background-image: url(/public/images/menu.png);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: bold;
    color: #723F71;
    vertical-align: middle;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin: 100px;
    font-style: italic;
}
a {
    text-decoration: none;
}