.canvas-container {
    text-align: center;
}

h1 {
    text-align: center;
    color: white;
}

p {
    text-align: center;
    color: white;
}

body {background-color: rgb(0, 0, 0);}

.center {
    color: grey;
    text-align: center;
}

.message-text {
    color: rgb(207, 207, 207);
    animation: move linear .5s;
}

@keyframes move {
    from {
        margin-left: 100%;
        width: 300%;
      }
    
      to {
        margin-left: 0%;
        width: 100%;
      }
}