@import url(https://fonts.bunny.net/css?family=alexandria:300,800);
html
{
    direction: rtl;
}

body {
    background-color: black;
}
div {
    background-color: black;
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    color: #eee;
    font-family: 'Alexandria', sans-serif;
    direction: rtl;
    line-height: 28px;
    border: 1px dotted #5d5b5b;
    padding: 10px;
    text-align: justify;
    
}

div::after {    
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    background-color: #eee;
    left: -5px;
    top: -5px;
    animation-name: movement;
    animation-duration: 8s;
    animation-iteration-count: infinite;
    transform-origin:left top;
}
div::before {
    position: absolute;
    content: '';
    width: 100px;
    height: 50px;
    left: 50%;
    top: -60px;
    transform: translateX(-50%);
    background-image: url(wh-logo.svg);
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: center;
    padding: 5px 10px;
    display: block;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
}
p {
    margin: 0px 0px 5px 0px;
    font-weight: bold;
}
@keyframes movement {
    0% {
        transform: translate(0,0);
    }
    25% {
        transform: translate(0,109px);
    }
    50% {
        transform: translate(270px,109px);
    }
    75% {
        transform: translate(270px,0px);
    }
    100% {
        transform: translate(0px,0px);
    }
}
div p {
    color: #eee;
}