body {
    background-color: #000;
    color: #ff9900;
    font-family: 'Creepster', cursive;
    text-align: center;
    margin: 0;
    padding: 20px;
}

h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 4px #ff9900;
}

canvas {
    background-color: #1a1a1a;
    border: 4px solid #ff9900;
    box-shadow: 0 0 20px #ff9900;
}

p {
    font-size: 1.5rem;
}

a {
    color: #ff9900;
    text-decoration: none;
    font-size: 1.2rem;
    display: inline-block;
    margin-top: 20px;
    border: 2px solid #ff9900;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

a:hover {
    background-color: #ff9900;
    color: #000;
}