* {
  user-select: none;
}

body {

    margin: 0 15% 0 0;
    height: 100vh;
    background: linear-gradient(45deg, #050510, #505070);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Montserrat, sans-serif;
    overflow: hidden;
}

.text {

    color: white;
    font-size: 24px;
    margin: 10px;
}

.highlight {

    position: relative;
}

.highlight span {

    margin-left:5px;

    opacity: 0;
    transform: translateY(5px);
    display: inline-block;

    color: yellow;
    position: absolute;
    left: 0;
    top: 0;
    animation: slide 3s infinite;
}

@keyframes slide {
    0% { transform: translateY(5px); opacity: 0; }
    10% { transform: translateY(0); opacity: 1; }
    40% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(5px); opacity: 0; }
    100% { transform: translateY(5px); opacity: 0; }
}

.highlight span:nth-child(1) {

    animation-delay: 0s;
}

.highlight span:nth-child(2) {

    animation-delay: 1.5s;
}