/* Colores de los títulos */
h1 {
    color: white;
}

h2 {
    color: #df7d42;
}

h3 {
    color: #e9ac88;
}

h4 {
    color: #d8c3b6;
}


/* Enlaces sin subrayado */
.quitar-subrayado > a {
    text-decoration: none;
}


.text-align-center {
    text-align: center;
}

/* Que no desborde el título de las entradas del inicio */
.title-overflow > li {
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    overflow: hidden;
}

.display-none {
    display: none;
}

/* Imagen de las entradas del blog */
.max-height-400px {
    max-height: 400px;
    
}
.max-height-400px > img {
    max-height: 400px;
    object-fit: cover;
}


/* Imagen de las entradas del blog */
.max-height-600px {
    max-height: 500px;
    
}
.max-height-600px > img {
    max-height: 500px;
    object-fit: cover;
}


.display-inline-block {
    display: inline-block;
}


.menu-hamburguesa-navegacion {
    min-width: 0px !important;
}

.menu-hamburguesa-navegacion > li{
    border-bottom: 1px solid grey;
}



.diagrama-altura > svg {
    max-height: 90vh;
}