﻿.move-text {
    display: inline-block;
    animation: slide-left 0.5s ease forwards;


    @font-face {
        font-family: CustomFont;
        src: url('typeunion-manual-ultra-light-compressed.ttf');
    }
}

@font-face {
    font-family: CustomFont;
    src: url('typeunion-manual-ultra-light-compressed.ttf');
}

.move-text {
    font-family: CustomFont;
}

@keyframes slide-left {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100px);
    }
}


