html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: Roboto, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    background-color: #FFFFFF;
}

* {
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.top-bar {
    background-color: #FFFFFF;
    /* Para ajustar color de la barra superior */
    height: 10vh;
    /* Para ajustar tamaño de la barra superior */
    display: flex;
    align-items: center;
    padding: 1vh 2vw;
    color: black;
    font-size: 3rem;
    position: relative;
    justify-content: space-between;
    border-bottom: 1px solid;
    border-color: #00000042;
}

.logo {
    max-height: 100%;
    position: absolute;
    left: 2vw;
    /* Para ajustar tamaño del mouse de arriba a la izquierda */
}

.cec-logo {
    max-height: 8vh;
    max-width: 30vw;
}

.content {
    display: flex;
    flex-grow: 1;
}

.card {
    max-width: 25vw;
    max-height: 50vh;
    width: auto;
    height: auto;
}


.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f3f6;
    /* background-color: #d1d9e6; */

    padding: 1rem;
    /* border-bottom: 1px solid #00000033; */
}

/* d1d9e6 */

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
}

.navbar li {
    display: inline;
}

.navbar a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.navbar a:hover {
    color: #007BFF;
}

.message {
    position: fixed;
    right: 3vw;
    bottom: 3vh;
    background-color: white;
    border: 1px solid black;
    border-radius: 4px;
    padding: 10px;
    box-shadow: 0 0 2px black;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* colores:
- f0f3f6 -> mas claro
- e0e8f0 -> intermedio
- d1d9e6 -> mas oscuro
*/