body {
    margin: 0;
    height: 100vh;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 1) 50%), url('favicon.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top left;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

canvas {
    width: 960px;
    height: 540px;
    background-color: #000;
    border: 0;
}

.container {
    text-align: center;
    color: white;
}

a {
    color: cyan;
    text-decoration: none;
}

    a:visited {
        color: cyan;
        text-decoration: none;
    }

    a:hover {
        color: cyan;
        text-decoration: underline;
    }
