
/*Animação no Texto*/
.box-texto{
    text-align:center;
    position: absolute;
    top:0;
    left:0;
    transform: translate(-50%, -50%);
    width: 100%;
    display: contents;
}

.cabecalho { width:100%; float:left; }

.box-texto span{ display:block; }

.title{
    font-size: 70px;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 30px;
    background:#fff;
    position: relative;
    animation: motion 2s 1;
}

.descricao{
    font-size:1.5em;
    letter-spacing: 6px;
    width: 100%;
}

@keyframes motion{
    0%{
        color: #cccccc;
        margin-bottom: -30px;
    }
    30%{
        letter-spacing: 30px;
        margin-bottom: -30px;
    }
    85%{
        letter-spacing: 5px;
        margin-bottom: -30px;
    }
}
/*Animação no Texto*/


/*Fecha o Responsivo*/

/*Barra Lateral*/

.barra {
    height: 100%;
    text-decoration: none;
    position: fixed;
    left: 10px;
    top: 250px;
}

/*Animar texto - Telefonel*/


.neon-text {
    font-size: 1,5rem;
    color: #000;
    text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
    }
    100% {
        text-shadow: 0 0 10px #00d4ff, 0 0 20px #00d4ff, 0 0 40px #00d4ff, 0 0 80px #00d4ff, 0 0 160px #00d4ff;
    }
}

