:root {
    --corEscura: #612c2c;
    --corBase: #8a3939;
    --corClara: #ac5454;
    --corLight: #d39d9d;
}

* {
    box-sizing: border-box;
}

body {
    height: 100%;
    padding: 0;
    margin: 0;
    background-image: url('../../ativos/img/bg.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
}

html {
    height: 100%;
}

a {
    color: var(--corBase);
    text-decoration: none;
}

footer {
    width: 100%;
    font-size: 12px;
    text-align: center;
    margin-top: 30px;
    padding: 20px 0;
    color: gray;
}