﻿@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css");

*,
::before,
::after {
    box-sizing: border-box;
}

html, body {
    height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Cairo', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    margin: 0;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 2px;
    font-size: 2.5rem;
    text-align: end;
    background-image: url('img/5190713.jpg');
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-size: 200%;
    background-repeat: repeat;
    animation: animate 6s linear infinite;
}

.version {
    display: block;
    margin-top: 0.5rem;
    font-size: 1rem;
    font-weight: 400;
    background-image: url('img/5190713.jpg');
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-size: 200%;
    background-repeat: repeat;
    animation: animate 6s linear infinite;
}

@keyframes animate {
    to {
        background-position: 300%;
    }
}
