
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;600&display=swap');


@keyframes rectFade{
    from {
        stroke-width: 0.0px;
    }
    to {
        stroke-dashoffset: 737; /* 737 */
      }
}

@keyframes textFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 100;
    }
}

body {
    padding: 0;
    margin: 0;

    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #171b1e;
    color: #4e4e4e;

    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.container {
}

p {
    font-size: 1em;
    text-align: center;
    font-weight: 300;

    opacity: 0;

    animation: textFade 1s cubic-bezier(0.65, 0.05, 0.36, 1) forwards;
    animation-delay: 5s;
}

.name {
    font-size: 1.4em;
    font-weight: 600;
}



path.logo {
    fill: none;
    stroke: white;
    stroke-width: 0.6px;

    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;

    animation: rectFade 6s cubic-bezier(0.65, 0.05, 0.36, 1) forwards
}