* {
    margin: 0px;
    padding: 0px;
    font-family: 'Times New Roman', Times, serif;
}

.odkaz {
    font-size: 30px;
    color: white;
    margin: 0 5px;
    position: absolute;
}

body {
    background-color: black;
}

.boxx {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.boxx span {
    text-transform: uppercase;
    display: block;
}

.One {
    color: white;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 20px;
    background: black;
    position: relative;
    animation: text 3s 1;
}

.Two {
    font-size: 30px;
    color: #d81b60;
}

@keyframes text {
    0% {
        color: black;
        margin-bottom: -40px;
    }

    30% {
        letter-spacing: 25px;
        margin-bottom: -40px;
    }

    85% {
        letter-spacing: 8px;
        margin-bottom: -40px;
    }
}