body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: monospace;
    font-weight: bold;
    color: #0437F2;
    background-color: #0437F2;
}
div {
    text-align: center;
    background-color: #fff;
    padding: 32px;
    border-radius: 8px;
}
a {
    display: block;
    background: white;
    margin-top: 20px;
}
p {
    white-space: nowrap;
    animation: scroll-left 2.2s linear infinite;
    margin-top: 10px;
}
@keyframes scroll-left {
    0% { transform: translateX(140%); }
    100% { transform: translateX(-140%); }
}