#frase-profunda {
    font-family: 'Orbitron', sans-serif;
    font-size: small;
    color: #0a0a0a;
    text-shadow: 0 0 3px #00ffff55;
    padding-right: 15px;
    position: relative;
    z-index: 1;

    display: inline-block;
    white-space: nowrap;
    letter-spacing: 0.15em;
    overflow: hidden;
    margin-left: auto;
    bottom: -3px;
}

@media (max-width: 1000px) {
    #frase-profunda {
        padding-right: 50px;
        font-size: small;
        bottom: -4px;
    }
}

@media (max-width: 600px) {
    #frase-profunda {
        position: relative;
        letter-spacing: 0.15em;
        overflow: hidden;
        margin-left: initial;
        padding-right: 0px;
        bottom: 3px;
    }
}

@media (max-width: 420px) {
    #frase-profunda {
        font-size: xx-small;
        bottom: 0px;
    }
}

@media (max-width: 315px) {
    #frase-profunda {
        display: none;
    }
}

#frase-profunda-cursor {
    animation: cursorTitilaEnFraseProfunda 0.8s infinite step-end;
}

@keyframes cursorTitilaEnFraseProfunda {

    from,
    to {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}