.texts1 {
    border-width: 3px;
    border: 2px solid #0014e2;
    margin-bottom: 5px;
    border-style: outset;
    border-radius: 1px;
    border: 2px solid #ff182c;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 40%);
}

.blink {
    animation-direction: alternate;
    animation-duration: 0.8s;
    animation-iteration-count: infinite;
    animation-name: blinker;
}
@keyframes blinker {
    25% {
        color: lime;
    }
    75% {
        color: blue;
    }
}