
body {
    background-color: rgb(210, 220, 220);
    font-family: 'Darker Grotesque', sans-serif;
    font-size: 18px;

    margin: 0;
    padding: 0;
    display: flex;
}


#sketch {
    position: relative;
    margin-left: 50; 
    border: 1px solid black;
    margin-top: 80px;
}


#navegador {
    position: fixed;
    right: 50px;
    bottom: 70px;
    width: 350px;
    background-color: rgba(210, 220, 220, 0.5); /*COLOR2 rgb(178, 205, 205,0.53);*/
    padding: 20px;
    padding-left: 40px;
    height: 74vh;
    overflow-y: auto;
}


.descripcion, .leyenda, .cuaderno {
    font-weight: bold;
    margin-bottom: 10px;
}

.separador {
    border-top: 0.3px solid black;
    margin: 30px 0;
}

.item-leyenda {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.icono {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-right: 10px;
}

.intensidad {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    border: 1px solid black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intensidad div {
    width: 8px;
    height: 8px;
    border: 1px solid black;
    border-radius: 50%;
}

.linea {
    width: 30px;
    height: 1px;
    margin-right: 10px;
}

.negra {
    background-color: black;
}

.gris {
    background-color: rgb(255, 255, 255);
    border: 4px;
}

.boton:hover {
    background-color: black;
    color: white;
}


#titulo {
    font-family: 'Darker Grotesque', sans-serif;
    font-size: 50px;
    margin: 20px 40px;
    position: absolute;
    right: 0;
}

#contenedor-palabras {
    position: fixed;
    top: 10px; /* Deja un pequeño margen superior */
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    z-index: 9999; /* Asegura que esté encima de todo */
    text-align: center;
    font-size: 14px; /* Pequeño pero legible */
    font-family: 'Darker Grotesque', sans-serif;
    color: black;
    padding: 5px;
    line-height: 1.2; /* Más compacto */
    white-space: nowrap; /* Para que no se rompan las palabras */
}

.linea-palabras {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    transition: all 0.5s ease-in-out;
}

.nueva {
    color: black;
}

.antigua {
    color: gray;
    opacity: 0.5;
    transform: translateY(-5px);
}
