/* Aquí haremos el estilo del breakout.
Sus colores, su forma, su tamaño, etc... */

body {
    background-color: black;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    font-family:Georgia, 'Times New Roman', Times, serif;
    margin: 0px;
}

canvas {
    background: lightblue;
    display: block;
    border-radius: 7px;
    border-width: inherit;
    border-style: solid;
    border-width: 3px;
    border-color: yellow;
}