html, body{
    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    background-color: #3BAF29;
    background-image: url('images/uab-image-bg.png');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; 

    min-height: 100vh;

    font-family: Carlito, FreeSans, Helvetica, Arial, sans-serif;
    color: white;    
    font-weight: 700;
    font-size: 1.5em;
}

/* div { 
        border: black 1px dotted;
} */

div#logo {
    position: relative;
    display:inline-block;

    width: 90%;
    height: 11em;
    margin: 0 5%;

    background-image: url('images/uab-logo.png');
    background-repeat: no-repeat;
    background-position: center;

}

.content {
    position: relative;
    display: inline-block;
    
    width: 90%;
    height: 11em;
    margin: 0 5%;

}

.content #timeout {
    margin: 5em;
    
    font-weight: 400;
    font-size: .4em;
    font-style: italic;
}

.content a {

    color: white;
    text-decoration: none;

}

.content ul {
    position: relative;
    display: inline-block;
    margin: auto;

    /* border: red 1px dotted; */

    left: 50%;
    transform: translate(-50%,0);
}
.content li {
    list-style-type: none;  /* Elimina viñetas/números */
    list-style-image: none; /* Elimina imágenes como viñetas */
    list-style-position: outside; /* No afecta la decoración */

    padding: 0.5em 1.5em;

    border-radius: 10px;  /* Esquinas redondeadas */

    transition: all 0.1s ease;
}


/* Cuando el li está en hover */
li:hover, li:has(a:hover)  {
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
    transform: translateY(1px);
}

