/* Estructura */
body{
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    color: #000 !important;
    background-image: url('../images/bg1.jpg');
    background-position: center;
    background-size: cover;
}

main{
    flex: 1 0 auto;
}

nav{
    background-color: #1BA333 !important;
    padding-left: 5% !important;
    padding-right: 5% !important;
}

footer{
    background-color: #1BA333 !important;
    color: #FFF;
}

/* Customizaciones */
.uk-navbar-nav>li>a{
    color: #FFF;
}

p{
    text-align: justify !important;
}

a:hover{
    text-decoration: none !important;
    color: #FFCC00 !important;
}

.uk-card-default{
    background-color: #e0e0e0 !important;
    /* box-shadow: 0 8px 6px -6px black; */
    box-shadow: 0 0 5px 2px #ccc;
    color: #000 !important;
}

.uk-card-default .uk-card-title{
    color: #000 !important;
}

.uk-card-body{
    padding: 20px;
}

/* -------------------------- */

.jumbotron{
    position: relative;
}

.jumbotron img{
    width: 100%;
    height: auto;
}

.title-site{
    position: absolute;
    left: 15%;
    bottom: 50px;
    color: #FFF;
    font-size: 50px;
    font-weight: bold;
    line-height: 110%;
}

.groupBox{
    padding: 20px;
    background-color: #1BA333;
    color: #FFF;
    font-size: large;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    line-height: 110%;
}

.groupBox small{
    font-size: 12px !important;
    font-weight: normal;
    text-align: center;
}

.groupBox:hover{
    background-color: #135423;
}

/* Table */
.table ul{
    margin-bottom: 0;
    /* border-collapse: collapse; */
}

.table tr:nth-child(1) td, .table tr:nth-child(2) td{
    background-color: #FFF2CC;
    font-weight: bold;
    text-align: center;
    text-align: center;
}

.table p{
    margin-bottom: 0;
}

td{
    padding: 10px;
    border: solid 1px;
    /* vertical-align: middle; */
}

@media screen and (max-width: 420px){
    nav{
        background-color: #1BA333 !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .title-site{
        left: 10%;
        bottom: 10px;
        font-size: 25px;
    }
}