html, body {
    margin: 0;
    height: 100%;
    overflow: hidden;
    font-family: 'Segoe UI', sans-serif;
    color: white;
    background-color: black;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.links {
    position: fixed;
    top: 16px;
    width: 100%;
    text-align: center;
    z-index: 1;
    letter-spacing: 2px;
}

.links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    margin: 0 8px;
    transition: color 0.2s;
}

.links a:hover {
    color: #aaa;
}

.about {
    position: absolute;
    bottom: 32px;
    z-index: 1;
    max-width: 512px;
    padding-left: 32px;
    padding-right: 32px;
}

.about h1 {
    font-size: 64px;
    margin: 0;
    line-height: 1;
}

.about p {
    font-size: 16px;
    margin-top: 16px;
    color: #ccc;
    line-height: 1.5;
}